1
1
Fork 0
mirror of https://github.com/QB64-Phoenix-Edition/QB64pe.git synced 2024-05-02 21:50:13 +00:00

Remove clean.bat (#363)

This commit is contained in:
Samuel Gomes 2023-11-04 06:46:58 +05:30
parent 9e26592f2d
commit 36f73641b1
3 changed files with 1 additions and 35 deletions

View file

@ -43,7 +43,6 @@ cp -rp ./internal/support $DIST_ROOT/internal/
cp -rp ./internal/temp $DIST_ROOT/internal/
cp ./internal/config.ini $DIST_ROOT/internal/
cp ./internal/version.txt $DIST_ROOT/internal/
cp ./internal/clean.bat $DIST_ROOT/internal/
cp -rp ./internal/c/libqb $DIST_ROOT/internal/c/
cp -rp ./internal/c/parts $DIST_ROOT/internal/c/

1
.gitignore vendored
View file

@ -18,3 +18,4 @@ mingw64.exe
.vscode
.DS_Store
source/qb64pe_start.command
.fake

View file

@ -1,34 +0,0 @@
@echo off
echo This batch is an admin tool to return QB64-PE to its pre-setup state
pause
echo Purging temp folders
rmdir /s /q temp,temp2,temp3,temp4,temp5,temp6,temp7,temp8,temp9 2>nul
echo Replacing main temp folder
md temp
echo Replacing dummy file in temp folder to maintain directory structure
copy source\temp.bin temp\temp.bin
echo Pruning source folder
del source\undo2.bin 2>nul
del source\recompile.bat 2>nul
del source\debug.bat 2>nul
del source\files.txt 2>nul
del source\paths.txt 2>nul
del source\root.txt 2>nul
del source\bookmarks.bin 2>nul
del source\recent.bin 2>nul
echo Culling precompiled libraries
del /s c\libqb\*.o 2>nul
del /s c\libqb\*.a 2>nul
del /s c\parts\*.o 2>nul
del /s c\parts\*.a 2>nul
echo Culling temporary copies of qbx.cpp, such as qbx2.cpp
del c\qbx2.cpp,c\qbx3.cpp,c\qbx4.cpp,c\qbx5.cpp,c\qbx6.cpp,c\qbx7.cpp,c\qbx8.cpp,c\qbx9.cpp 2>nul
pause