diff options
author | B. Watson <urchlay@slackware.uk> | 2024-07-13 00:47:26 -0400 |
---|---|---|
committer | B. Watson <urchlay@slackware.uk> | 2024-07-13 00:47:26 -0400 |
commit | cd1e140cc3649a39d0fb76921827990ae906bb5f (patch) | |
tree | 5737e96b1eeb21277c58acca57dc7b0d829dbd52 | |
parent | c0b323f82c05df962c26bfd476f1dddb1d6e3047 (diff) | |
download | bw-atari8-tools-cd1e140cc3649a39d0fb76921827990ae906bb5f.tar.gz |
diffbas: set -e to exit on 1st failed command.
-rwxr-xr-x | diffbas | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -47,6 +47,7 @@ dir="$( mktemp -d -t diffbas.XXXXXXXXXX )" [ -d "$dir" ] cd "$dir" trap cleanup EXIT +set -e listbas $listbasopts "$file1" > $base1 listbas $listbasopts "$file2" > $base2 |