diff --git a/build-and-release-unstable.ps1 b/build-and-release-unstable.ps1 index 51c6f0d5..d6849dc8 100644 --- a/build-and-release-unstable.ps1 +++ b/build-and-release-unstable.ps1 @@ -1 +1,2 @@ -./build.ps1 -target BuildAndReleaseUnstable \ No newline at end of file +./build.ps1 -target BuildAndReleaseUnstable +exit $LASTEXITCODE \ No newline at end of file diff --git a/build-and-run-tests.ps1 b/build-and-run-tests.ps1 index f82502e5..cc9fd4bb 100644 --- a/build-and-run-tests.ps1 +++ b/build-and-run-tests.ps1 @@ -1 +1,2 @@ -./build.ps1 -target RunTests \ No newline at end of file +./build.ps1 -target RunTests +exit $LASTEXITCODE \ No newline at end of file diff --git a/release.ps1 b/release.ps1 index 6cf4c66b..683cb58c 100644 --- a/release.ps1 +++ b/release.ps1 @@ -1 +1,2 @@ -./build.ps1 -target Release \ No newline at end of file +./build.ps1 -target Release +exit $LASTEXITCODE \ No newline at end of file diff --git a/run-acceptance-tests.ps1 b/run-acceptance-tests.ps1 index 480e1d4c..6c6ade10 100644 --- a/run-acceptance-tests.ps1 +++ b/run-acceptance-tests.ps1 @@ -1 +1,2 @@ -./build -target RunAcceptanceTests \ No newline at end of file +./build -target RunAcceptanceTests +exit $LASTEXITCODE \ No newline at end of file diff --git a/run-benchmarks.ps1 b/run-benchmarks.ps1 index e05490fd..cb4e9b61 100644 --- a/run-benchmarks.ps1 +++ b/run-benchmarks.ps1 @@ -1 +1,2 @@ -./build.ps1 -target RunBenchmarkTests \ No newline at end of file +./build.ps1 -target RunBenchmarkTests +exit $LASTEXITCODE \ No newline at end of file diff --git a/run-unit-tests.ps1 b/run-unit-tests.ps1 index 0e6a91bd..c3c36832 100644 --- a/run-unit-tests.ps1 +++ b/run-unit-tests.ps1 @@ -1 +1,2 @@ -./build.ps1 -target RunUnitTests \ No newline at end of file +./build.ps1 -target RunUnitTests +exit $LASTEXITCODE \ No newline at end of file