mirror of
https://github.com/AFLplusplus/AFLplusplus.git
synced 2025-06-12 01:58:17 +00:00
add temporary fix for uc until unicorn publishes a new release
This commit is contained in:
@ -196,6 +196,16 @@ $MAKECMD -j1 || exit 1
|
|||||||
echo "[+] Build process successful!"
|
echo "[+] Build process successful!"
|
||||||
|
|
||||||
echo "[*] Installing Unicorn python bindings..."
|
echo "[*] Installing Unicorn python bindings..."
|
||||||
|
cd unicorn/bindings/python || exit 1
|
||||||
|
if [ -z "$VIRTUAL_ENV" ]; then
|
||||||
|
echo "[*] Info: Installing python unicornafl using --user"
|
||||||
|
$PYTHONBIN setup.py install --user --force --prefix=|| exit 1
|
||||||
|
else
|
||||||
|
echo "[*] Info: Installing python unicornafl to virtualenv: $VIRTUAL_ENV"
|
||||||
|
$PYTHONBIN setup.py install --force || exit 1
|
||||||
|
fi
|
||||||
|
cd ../../../
|
||||||
|
echo "[*] Installing Unicornafl python bindings..."
|
||||||
cd bindings/python || exit 1
|
cd bindings/python || exit 1
|
||||||
if [ -z "$VIRTUAL_ENV" ]; then
|
if [ -z "$VIRTUAL_ENV" ]; then
|
||||||
echo "[*] Info: Installing python unicornafl using --user"
|
echo "[*] Info: Installing python unicornafl using --user"
|
||||||
|
Reference in New Issue
Block a user