Skip to content

Commit

Permalink
Set errexit bash option to terminate contrib setup scripts on error
Browse files Browse the repository at this point in the history
  • Loading branch information
CyanoKobalamyne committed Feb 7, 2024
1 parent bd8a849 commit 83eb6cf
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 0 deletions.
1 change: 1 addition & 0 deletions contrib/setup-bison.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#!/bin/bash
set -e

DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
DEPS=$DIR/../deps
Expand Down
1 change: 1 addition & 0 deletions contrib/setup-bitwuzla.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#!/bin/bash
set -e

BITWUZLA_VERSION=6e46391816b4baf8c9fc0b8c0c1d2fbe63b6f30e
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
Expand Down
1 change: 1 addition & 0 deletions contrib/setup-btor.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#!/bin/bash
set -e

BTOR_VERSION=97698b06a5de1a4e5743c034c867d384630dc936
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
Expand Down
1 change: 1 addition & 0 deletions contrib/setup-cvc5.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#!/bin/bash
set -e

DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
DEPS=$DIR/../deps
Expand Down
1 change: 1 addition & 0 deletions contrib/setup-flex.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#!/bin/bash
set -e

DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
DEPS=$DIR/../deps
Expand Down
1 change: 1 addition & 0 deletions contrib/setup-z3.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#!/bin/bash
set -e

Z3_VERSION=6cc52e04c3ea7e2534644a285d231bdaaafd8714

Expand Down

0 comments on commit 83eb6cf

Please sign in to comment.