summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--build.cmd1
-rwxr-xr-xbuild.sh1
2 files changed, 2 insertions, 0 deletions
diff --git a/build.cmd b/build.cmd
index be2a73c3b5..754c986477 100644
--- a/build.cmd
+++ b/build.cmd
@@ -202,6 +202,7 @@ if exist "%__IntermediatesDir%" rd /s /q "%__IntermediatesDir%"
if exist "%__TestBinDir%" rd /s /q "%__TestBinDir%"
if exist "%__TestIntermediatesDir%" rd /s /q "%__TestIntermediatesDir%"
if exist "%__LogsDir%" del /f /q "%__LogsDir%\*_%__BuildOS%__%__BuildArch%__%__BuildType%.*"
+if exist "%__ProjectDir%\Tools" rd /s /q "%__ProjectDir%\Tools"
:SkipCleanBuild
diff --git a/build.sh b/build.sh
index a450ef5d6e..6aca3ed772 100755
--- a/build.sh
+++ b/build.sh
@@ -65,6 +65,7 @@ clean()
rm -rf "$__TestIntermediatesDir"
rm -rf "$__LogsDir/*_$__BuildOS__$__BuildArch__$__BuildType.*"
+ rm -rf "$__ProjectRoot/Tools"
}
# Check the system to ensure the right prereqs are in place