Skip to content
Snippets Groups Projects
Commit c1143e2e authored by Anh Nguyen-Tuong's avatar Anh Nguyen-Tuong
Browse files

Replace wget with curl to fetch latest afl code

parent 4e1808b4
No related branches found
No related tags found
No related merge requests found
Checking pipeline status
......@@ -16,7 +16,8 @@ if [ -z "$afl_loc" ]; then
echo
echo Setup AFL
echo
wget http://lcamtuf.coredump.cx/afl/releases/afl-latest.tgz
# wget http://lcamtuf.coredump.cx/afl/releases/afl-latest.tgz
curl -o afl-latest.tgz http://lcamtuf.coredump.cx/afl/releases/afl-latest.tgz
tar -xzvf afl-latest.tgz && rm afl-latest.tgz
if [ -d afl ]; then
rm -fr afl
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment