From a6ab6612224e19eadc4bd06f149cc9c2d3af2c9d Mon Sep 17 00:00:00 2001 From: Tom Gardham-Pallister Date: Fri, 22 Dec 2017 06:07:12 +0000 Subject: [PATCH] show errors in appv --- build-and-release-unstable.ps1 | 3 ++- build-and-run-tests.ps1 | 3 ++- release.ps1 | 3 ++- run-acceptance-tests.ps1 | 3 ++- run-benchmarks.ps1 | 3 ++- run-unit-tests.ps1 | 3 ++- 6 files changed, 12 insertions(+), 6 deletions(-) diff --git a/build-and-release-unstable.ps1 b/build-and-release-unstable.ps1 index 51c6f0d..d6849dc 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 f82502e..cc9fd4b 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 6cf4c66..683cb58 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 480e1d4..6c6ade1 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 e05490f..cb4e9b6 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 0e6a91b..c3c3683 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