Skip to content

Commit 88996d1

Browse files
committed
Fixes
1 parent 597eb16 commit 88996d1

File tree

1 file changed

+4
-7
lines changed

1 file changed

+4
-7
lines changed

build.sh

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
#!/usr/bin/env bash
2+
set -e
23

34
# No options are needed to run a basic build and unit tests
45
# To run functional tests against azure and or aws, use the following options:
@@ -26,18 +27,14 @@ while [ : ]; do
2627
export AWS_DEFAULT_REGION=$2
2728
shift 2
2829
;;
29-
--) shift;
30-
break
30+
--) shift;
31+
break
3132
;;
3233
esac
3334
done
3435

35-
RESULTCODE=0
3636
pushd $(pwd)
3737

3838
# Download dotnet cli and run tests
3939
. build/common/common.sh
40-
run_standard_tests
41-
42-
popd
43-
exit $RESULTCODE
40+
run_standard_tests

0 commit comments

Comments
 (0)