From 36f73641b131aae3e14b4dc044f42b4ddf307464 Mon Sep 17 00:00:00 2001 From: Samuel Gomes Date: Sat, 4 Nov 2023 06:46:58 +0530 Subject: [PATCH] Remove clean.bat (#363) --- .ci/make-dist.sh | 1 - .gitignore | 1 + internal/clean.bat | 34 ---------------------------------- 3 files changed, 1 insertion(+), 35 deletions(-) delete mode 100644 internal/clean.bat diff --git a/.ci/make-dist.sh b/.ci/make-dist.sh index 30034c2e3..362a49015 100755 --- a/.ci/make-dist.sh +++ b/.ci/make-dist.sh @@ -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/ diff --git a/.gitignore b/.gitignore index a9041c6ca..5d481d6b1 100644 --- a/.gitignore +++ b/.gitignore @@ -18,3 +18,4 @@ mingw64.exe .vscode .DS_Store source/qb64pe_start.command +.fake diff --git a/internal/clean.bat b/internal/clean.bat deleted file mode 100644 index 38f8c7353..000000000 --- a/internal/clean.bat +++ /dev/null @@ -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