mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-10 21:23:58 +01:00
Fix SC2006 in minimize.sh
This commit is contained in:
parent
7741b21d0e
commit
0e0a0b9802
3
changes/ticket30079
Normal file
3
changes/ticket30079
Normal file
@ -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}"
|
||||
|
Loading…
Reference in New Issue
Block a user