Skip to content

Commit eff8d74

Browse files
committed
set -eu
1 parent 25d4ee8 commit eff8d74

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

fuzz/init-fuzzer.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# https://stackoverflow.com/a/246128/3549270
44
SCRIPT_DIR=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )
55

6-
cd "$SCRIPT_DIR" || exit
6+
cd "$SCRIPT_DIR"
77

88
if ! cargo fuzz --help >&/dev/null; then
99
echo "Installing cargo-fuzz..."
@@ -20,7 +20,7 @@ if [ ! -d corpus/common ]; then
2020
done
2121

2222
(
23-
cd corpus/common || exit
23+
cd corpus/common
2424

2525
read -p "Would you like to build a corpus from a python source code dataset? (this will take a long time!) [Y/n] " -n 1 -r
2626
echo

0 commit comments

Comments
 (0)