Files
Web-NibblePoker/compile-clean.cmd
Herwin c8c59c8271 Fixed a few issues on mobile, Reorganized scripts, Fixed code line breaks
Update clean.bat, scripts.php, and 13 more files...
2023-12-22 06:21:31 +01:00

27 lines
360 B
Batchfile

@echo off
setlocal enabledelayedexpansion
:: Going into the script's directory
cd /D "%~dp0"
:clean
echo.
echo Cleaning up the project
echo -----------------------
:clean-php-minified
echo Clearing old minified PHP files...
pushd %CD%
for /r "%CD%" %%F in (*.min.php) do (
echo ^> Deleting "%%F"
del "%%F"
)
echo ^> Done ^!
popd
:clean-end
:end