diff options
author | Garrett Brown <themagnificentmrb@gmail.com> | 2024-01-18 17:23:54 -0800 |
---|---|---|
committer | Garrett Brown <themagnificentmrb@gmail.com> | 2024-01-22 04:46:25 -0800 |
commit | 72809d354d949ffc886c175e3a507032bff0df87 (patch) | |
tree | 0eebfe56003b434f8b22660ffdf5e1f2d576361e | |
parent | 02db1a6c747853d6ed527a21f1b8a4a12c465359 (diff) |
Speed up game-addon build time
-rw-r--r-- | tools/buildsteps/windows/prepare-env.bat | 2 |
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% |