From 7110ff0cd888bddab8efd470df834563bd840967 Mon Sep 17 00:00:00 2001 From: extremecoders-re Date: Wed, 27 Jul 2022 16:42:02 +0530 Subject: [PATCH] Add temporary fix for sasquatch failing to install More details https://github.com/ReFirmLabs/binwalk/pull/601 --- setup.sh | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/setup.sh b/setup.sh index 7ba3f1a..5023ebe 100755 --- a/setup.sh +++ b/setup.sh @@ -5,9 +5,12 @@ sudo apt update sudo apt install -y python3-pip python3-pexpect unzip busybox-static fakeroot kpartx snmp uml-utilities util-linux vlan qemu-system-arm qemu-system-mips qemu-system-x86 qemu-utils lsb-core wget tar echo "Installing binwalk" -git clone --depth=1 https://github.com/devttys0/binwalk.git +git clone --depth=1 https://github.com/ReFirmLabs/binwalk.git cd binwalk +# Temporary fix for sasquatch failing to install +git pull origin pull/601/head + # Change to python3 in deps.sh to allow installation on Ubuntu 20.04 (binwalk commit 2b78673) sed -i '/REQUIRED_UTILS="wget tar python"/c\REQUIRED_UTILS="wget tar python3"' deps.sh sudo ./deps.sh --yes