mirror of
https://github.com/enduro2d/enduro2d-toolset.git
synced 2025-12-13 03:36:29 +07:00
10 lines
157 B
Batchfile
10 lines
157 B
Batchfile
@echo off
|
|
set BUILD_DIR=%~dp0%\..\build
|
|
rmdir /s /q %BUILD_DIR% || goto :error
|
|
|
|
goto :EOF
|
|
|
|
:error
|
|
echo Failed with error #%errorlevel%.
|
|
exit /b %errorlevel%
|