diff --git a/build.cmd b/build.cmd index 03ecc029305..068028ee3dd 100644 --- a/build.cmd +++ b/build.cmd @@ -1,3 +1,3 @@ @echo off -powershell -ExecutionPolicy ByPass -NoProfile -command "& '%~dp0eng\common\build.ps1' -restore -build %*" +powershell -ExecutionPolicy ByPass -NoProfile -command "& '%~dp0eng\common\build.ps1' -nodeReuse:$false -restore -build %*" exit /b %ErrorLevel% diff --git a/build.sh b/build.sh index 8477d5af881..83eb5ab2619 100755 --- a/build.sh +++ b/build.sh @@ -13,4 +13,4 @@ while [[ -h $source ]]; do done scriptroot="$( cd -P "$( dirname "$source" )" && pwd )" -"$scriptroot/eng/common/build.sh" --build --restore $@ +"$scriptroot/eng/common/build.sh" --nodeReuse false --build --restore $@ diff --git a/restore.cmd b/restore.cmd index 2d66d87cc1e..09bd123dab4 100644 --- a/restore.cmd +++ b/restore.cmd @@ -1,3 +1,3 @@ @echo off -powershell -ExecutionPolicy ByPass -NoProfile -command "& '%~dp0eng\common\build.ps1' -restore %*" +powershell -ExecutionPolicy ByPass -NoProfile -command "& '%~dp0eng\common\build.ps1' -nodeReuse:$false -restore %*" exit /b %ErrorLevel% diff --git a/restore.sh b/restore.sh index 02531e1d710..5bf5d74bef6 100755 --- a/restore.sh +++ b/restore.sh @@ -13,4 +13,4 @@ while [[ -h $source ]]; do done scriptroot="$( cd -P "$( dirname "$source" )" && pwd )" -"$scriptroot/eng/common/build.sh" --restore $@ +"$scriptroot/eng/common/build.sh" --nodeReuse false --restore $@ diff --git a/test.cmd b/test.cmd index 19402256cde..9e1dfa4edb0 100644 --- a/test.cmd +++ b/test.cmd @@ -1,3 +1,3 @@ @echo off -powershell -ExecutionPolicy ByPass -NoProfile -command "& '%~dp0eng\common\build.ps1' -test %*" +powershell -ExecutionPolicy ByPass -NoProfile -command "& '%~dp0eng\common\build.ps1' -nodeReuse:$false -test %*" exit /b %ErrorLevel% diff --git a/test.sh b/test.sh index 637dec3600c..98a09baadbd 100755 --- a/test.sh +++ b/test.sh @@ -13,4 +13,4 @@ while [[ -h $source ]]; do done scriptroot="$( cd -P "$( dirname "$source" )" && pwd )" -"$scriptroot/eng/common/build.sh" --test $@ +"$scriptroot/eng/common/build.sh" --nodeReuse false --test $@