aboutsummaryrefslogtreecommitdiff
path: root/tools/buildsteps/windows
diff options
context:
space:
mode:
authorGarrett Brown <themagnificentmrb@gmail.com>2024-01-18 17:23:54 -0800
committerGarrett Brown <themagnificentmrb@gmail.com>2024-01-19 00:02:05 -0800
commit2c4f881408682252497e25eaef3f1bd12dcebfde (patch)
tree3778c0a8a0f623fc2f05e87a6b8ccbc3da2410e3 /tools/buildsteps/windows
parent7b71cff7bfad41ccde4483cd944e22ad2313b404 (diff)
Speed up game-addon build time
Diffstat (limited to 'tools/buildsteps/windows')
-rw-r--r--tools/buildsteps/windows/prepare-env.bat2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/buildsteps/windows/prepare-env.bat b/tools/buildsteps/windows/prepare-env.bat
index c26ce791d5..36625beb99 100644
--- a/tools/buildsteps/windows/prepare-env.bat
+++ b/tools/buildsteps/windows/prepare-env.bat
@@ -20,7 +20,7 @@ rem we assume git in path as this is a requirement
rem git clean the untracked files and directories
rem but keep the downloaded dependencies
rem also keeps MSYS2 installation
-SET GIT_CLEAN_CMD=git clean -xffd -e "project/BuildDependencies/downloads" -e "project/BuildDependencies/downloads2" -e "project/BuildDependencies/mingwlibs" -e "project/BuildDependencies/msys64" -e "project/BuildDependencies/tools"
+SET GIT_CLEAN_CMD=git clean -xffd -e "project/BuildDependencies/downloads" -e "project/BuildDependencies/downloads2" -e "project/BuildDependencies/mingwlibs" -e "project/BuildDependencies/msys64" -e "project/BuildDependencies/tools" -e "cmake/addons/build/download/msys2-base-*.tar.xz"
ECHO running %GIT_CLEAN_CMD%
%GIT_CLEAN_CMD%