diff options
author | van Hauser <vh@thc.org> | 2024-08-22 18:32:08 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-08-22 18:32:08 +0200 |
commit | 088dd6476ce3d086531633a39bb5daccc6f0415e (patch) | |
tree | 2e6ca0804a310626ab6653c9f1a7cf1a98cd3c82 | |
parent | 30df52cd8ccd6c4bea05932c8d59875872b04812 (diff) | |
parent | 74d262c7b512cd632ab55fda99023cb25db75595 (diff) | |
download | afl++-088dd6476ce3d086531633a39bb5daccc6f0415e.tar.gz |
Merge pull request #2195 from intrigus-lgtm/patch-4
Install package without asking for confirmation
-rw-r--r-- | docs/INSTALL.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/INSTALL.md b/docs/INSTALL.md index cea1ae6b..03f69485 100644 --- a/docs/INSTALL.md +++ b/docs/INSTALL.md @@ -32,7 +32,7 @@ sudo apt-get install -y gcc-$(gcc --version|head -n1|sed 's/\..*//'|sed 's/.* // sudo apt-get install -y ninja-build # for QEMU mode sudo apt-get install -y cpio libcapstone-dev # for Nyx mode sudo apt-get install -y wget curl # for Frida mode -sudo apt-get install python3-pip # for Unicorn mode +sudo apt-get install -y python3-pip # for Unicorn mode git clone https://github.com/AFLplusplus/AFLplusplus cd AFLplusplus make distrib |