Skip to content
This repository was archived by the owner on Jun 10, 2024. It is now read-only.

Commit 5d83ad6

Browse files
author
Dane Springmeyer
committed
Stop on build failures in bootstrap.sh
1 parent 622af71 commit 5d83ad6

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

bootstrap.sh

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
#!/bin/bash
22

3+
set -eu
4+
set -o pipefail
5+
36
function dep() {
47
./.mason/mason install $1 $2
58
./.mason/mason link $1 $2
@@ -47,3 +50,6 @@ function main() {
4750
}
4851

4952
main
53+
54+
set +eu
55+
set +o pipefail

0 commit comments

Comments
 (0)