Skip to content

Commit

Permalink
scripts : add pipefail
Browse files Browse the repository at this point in the history
  • Loading branch information
ggerganov committed Aug 29, 2023
1 parent 95b6e52 commit 611363a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions scripts/qnt-all.sh
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ fi
model="$1"
out="../tmp/results-${model}"

set -o pipefail
set -e

mkdir -p ${out}
Expand Down
1 change: 1 addition & 0 deletions scripts/run-all-perf.sh
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ fi
model="$1"
out="../tmp/results-${model}"

set -o pipefail
set -e

mkdir -p ${out}
Expand Down
1 change: 1 addition & 0 deletions scripts/run-all-ppl.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ if [ ! -z "$3" ]; then
args="$3"
fi

set -o pipefail
set -e

model="$1"
Expand Down

0 comments on commit 611363a

Please sign in to comment.