mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-12-06 19:41:15 +01:00
Fix SC2006 in minimize.sh
This commit is contained in:
@@ -0,0 +1,3 @@
|
||||
o Code simplification and refactoring (shell scripts):
|
||||
- Fix shellcheck warning SC2006 in src/test/fuzz/minimize.sh. Resolves
|
||||
issue 30079.
|
||||
@@ -7,7 +7,7 @@ if [ ! -d "$1" ] ; then
|
||||
exit 1
|
||||
fi
|
||||
|
||||
which=`basename "$1"`
|
||||
which=$(basename "$1")
|
||||
|
||||
mkdir "$1.out"
|
||||
afl-cmin -i "$1" -o "$1.out" -m none "./src/test/fuzz/fuzz-${which}"
|
||||
|
||||
Reference in New Issue
Block a user