Browse Source

fuzz: fix old code comment in script

y 2 năm trước cách đây
mục cha
commit
c669ba4696
1 tập tin đã thay đổi với 2 bổ sung2 xóa
  1. 2 2
      fuzz/honggfuzz/script/generate-binary-corpus.sh

+ 2 - 2
fuzz/honggfuzz/script/generate-binary-corpus.sh

@@ -6,10 +6,10 @@ test inputs for the fuzzer. This should in turn allow for more efficient fuzzing
 '
 set -e
 
-# Run from inside fuzz2 directory
+# Run from inside fuzz/honggfuzz directory
 CWD=$(pwd)
 DST=$CWD/hfuzz_workspace/zkbinary-decode/input/
 cd ..
 mkdir -p $DST
-find -name "*.zk.bin" -exec cp {} $CWD/hfuzz_workspace/zkbinary-decode/input/ \;
+find -name "*.zk.bin" -exec cp {} $DST \;
 cd $CWD