From 14f9a3de58e835d5ee3b865c007daad30ce37052 Mon Sep 17 00:00:00 2001 From: madosuki Date: Sat, 18 Jan 2025 21:18:38 +0900 Subject: [PATCH] =?UTF-8?q?Arch=20Linux=E3=81=8Cp7zip=E3=82=927zip?= =?UTF-8?q?=E3=81=AB=E7=BD=AE=E3=81=8D=E6=8F=9B=E3=81=88=E3=81=9F=E3=81=AE?= =?UTF-8?q?=E3=81=A7=E3=83=A1=E3=83=83=E3=82=BB=E3=83=BC=E3=82=B8=E3=82=92?= =?UTF-8?q?=E5=A4=89=E6=9B=B4=E3=80=82=E3=81=9D=E3=82=8C=E3=81=A87zz?= =?UTF-8?q?=E3=82=92=E8=A8=B1=E5=AE=B9=E3=81=99=E3=82=8B=E3=82=88=E3=81=86?= =?UTF-8?q?=E3=81=AB=E3=80=82=20(#2493)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Hiroshiba --- build/installer_linux.sh | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/build/installer_linux.sh b/build/installer_linux.sh index dc1d05ac48..14ce3e4286 100755 --- a/build/installer_linux.sh +++ b/build/installer_linux.sh @@ -95,9 +95,12 @@ elif command -v 7zr &> /dev/null; then elif command -v 7za &> /dev/null; then # CentOS/Fedora COMMAND_7Z=7za +elif command -v 7zz &> /dev/null; then + # Official 7zip + COMMAND_7Z=7zz else cat << 'EOS' && exit 1 -[!] Command '7z', '7zr' or '7za' not found +[!] Command '7z', '7zr', '7za' or '7zz' not found Required to extract compressed files @@ -115,7 +118,7 @@ Or sudo yum install p7zip Arch Linux: - sudo pacman -S p7zip + sudo pacman -S 7zip MacOS: brew install p7zip