Skip to content

Commit ccaee68

Browse files
committed
[bugfix] Make sure to clean all modules when calling the clean target in the Simple Build Script
1 parent c68f2de commit ccaee68

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

build.bat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ set "BASE_CMD=%SCRIPT_DIR%\mvnw.cmd -V"
8585

8686
:: Set CMD based on TARGET
8787
if "%TARGET%"=="clean" (
88-
set "CMD=%BASE_CMD% %CONCURRENCY% clean"
88+
set "CMD=%BASE_CMD% %CONCURRENCY% clean -Pinstaller,docker,concurrency-stress-tests,micro-benchmarks"
8989
) else if "%TARGET%"=="quick" (
9090
set "CMD=%BASE_CMD% %CONCURRENCY% clean package -DskipTests -Ddependency-check.skip=true -Dappbundler.skip=true -Ddocker=false -P !mac-dmg-on-mac,!codesign-mac-app,!codesign-mac-dmg,!mac-dmg-on-unix,!installer,!concurrency-stress-tests,!micro-benchmarks,skip-build-dist-archives"
9191
) else if "%TARGET%"=="quick-archives" (

build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ if [ "${OFFLINE}" == "true" ]; then
9999
fi
100100

101101
if [ "${TARGET}" == "clean" ]; then
102-
CMD="${BASE_CMD} ${CONCURRENCY} clean"
102+
CMD="${BASE_CMD} ${CONCURRENCY} clean -Pinstaller,docker,concurrency-stress-tests,micro-benchmarks"
103103
$CMD
104104
exit 0;
105105
fi

0 commit comments

Comments
 (0)