-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathclean.bat
More file actions
35 lines (28 loc) · 736 Bytes
/
clean.bat
File metadata and controls
35 lines (28 loc) · 736 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
@echo off
REM AudioCapture Clean Script
REM This script removes all build artifacts
echo ========================================
echo AudioCapture Clean Script
echo ========================================
echo.
echo WARNING: This will delete the build directory and all build artifacts.
set /p confirm="Are you sure you want to continue? (Y/N): "
if /i not "%confirm%"=="Y" (
echo Clean cancelled.
pause
exit /b 0
)
echo.
echo Cleaning build directory...
if exist "build" (
rmdir /S /Q "build"
echo Build directory deleted.
) else (
echo Build directory does not exist.
)
echo.
echo ========================================
echo Clean complete!
echo ========================================
echo.
pause