Fix SC2006 in minimize.sh

This commit is contained in:
rl1987 2019-04-08 11:16:45 +03:00
parent 7741b21d0e
commit 0e0a0b9802
2 changed files with 4 additions and 1 deletions

3
changes/ticket30079 Normal file
View 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.

View File

@ -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}"