Skip to content

Commit

Permalink
Add set -e to ensure that CI breaks if scripts break
Browse files Browse the repository at this point in the history
  • Loading branch information
jaisnan committed Jul 31, 2024
1 parent 8935fad commit 9011191
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions scripts/check_kani.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
#!/bin/bash

set -e

# Set the working directories
VERIFY_RUST_STD_DIR="$1"
KANI_DIR=$(mktemp -d)
Expand Down
2 changes: 2 additions & 0 deletions scripts/check_rustc.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
#!/bin/bash

set -e

# Set the working directory for your local repository
HEAD_DIR=$1

Expand Down

0 comments on commit 9011191

Please sign in to comment.