We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 25d4ee8 commit eff8d74Copy full SHA for eff8d74
fuzz/init-fuzzer.sh
@@ -3,7 +3,7 @@
3
# https://stackoverflow.com/a/246128/3549270
4
SCRIPT_DIR=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )
5
6
-cd "$SCRIPT_DIR" || exit
+cd "$SCRIPT_DIR"
7
8
if ! cargo fuzz --help >&/dev/null; then
9
echo "Installing cargo-fuzz..."
@@ -20,7 +20,7 @@ if [ ! -d corpus/common ]; then
20
done
21
22
(
23
- cd corpus/common || exit
+ cd corpus/common
24
25
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
26
echo
0 commit comments