add cleanup
Some checks are pending
Windows setup / run-setup (push) Waiting to run

This commit is contained in:
Brandyn / Techy
2026-04-05 21:30:31 -05:00
parent 5797f89cb4
commit 20dcdf3ee1

View File

@@ -26,3 +26,10 @@ jobs:
shell: cmd
run: |
call Setup.bat
- name: Cleanup
shell: cmd
run: |
attrib -h -s "%GITHUB_WORKSPACE%\*" /s /d 2>nul
del /f /q /s /a "%GITHUB_WORKSPACE%\*" 2>nul
for /d %%D in ("%GITHUB_WORKSPACE%\*") do rd /s /q "%%D"