Files
Web-NibblePoker/clean.bat
Herwin c3ab5544e1 Added PHP minification, Removed years-old honeypot-related trash
Update .htaccess, clean.bat, and 11 more files...
2023-08-13 21:21:06 +02:00

25 lines
402 B
Batchfile

@echo off
setlocal enabledelayedexpansion
:: Going into the script's directory
cd /D "%~dp0"
:main
echo.
echo Cleaning up the project
echo -----------------------
:php-clean
echo Clearing old minified PHP files...
pushd %CD%
for /r "%CD%" %%F in (*.min.php) do (
echo ^> Deleting "%%F"
del "%%F"
)
echo ^> Done ^!
popd
:end
:: FIXME: Won't this close the terminal when not called ?
exit /b