Skip to content

Commit

Permalink
sevenz plugin: update 7z ... again
Browse files Browse the repository at this point in the history
  • Loading branch information
jstucke committed Aug 8, 2024
1 parent 1829afd commit c050a78
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions fact_extractor/plugins/unpacking/sevenz/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,15 @@ echo "------------------------------------"
echo " install 7z "
echo "------------------------------------"

VERSION="2407"
FILE="7z${VERSION}-linux-x64.tar.xz"

# install newest version of 7z
mkdir -p /tmp/fact_build
cd /tmp/fact_build
wget https://www.7-zip.org/a/7z2403-linux-x64.tar.xz
tar xvf 7z2403-linux-x64.tar.xz 7zzs
wget "https://www.7-zip.org/a/${FILE}"
tar xvf "${FILE}" 7zzs
sudo mv 7zzs /usr/local/bin/
rm 7z2403-linux-x64.tar.xz
rm "${FILE}"

exit 0

0 comments on commit c050a78

Please sign in to comment.