10 lines
195 B
Batchfile
10 lines
195 B
Batchfile
@echo off
|
|
echo Cleaning build files...
|
|
if exist build (
|
|
rmdir /s /q build
|
|
echo Build folder successfully removed.
|
|
) else (
|
|
echo Nothing to clean. Build folder does not exist.
|
|
)
|
|
pause
|