Skip to content

Commit 4dae9ee

Browse files
committed
Fix afl extraction from invalid file name
1 parent 0aecaeb commit 4dae9ee

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

vagrant/Vagrantfile

+4-3
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,10 @@ Vagrant.configure(2) do |config|
3737
3838
# Build afl
3939
40-
wget http://lcamtuf.coredump.cx/afl/releases/afl-1.96b.tgz
41-
tar xf afl-1.94b.tgz
42-
cd afl-1.94b
40+
VERSION=1.96b
41+
wget http://lcamtuf.coredump.cx/afl/releases/afl-$VERSION.tgz
42+
tar xf afl-$VERSION.tgz
43+
cd afl-$VERSION
4344
make
4445
make install
4546

0 commit comments

Comments
 (0)