Skip to content

Commit a64fe11

Browse files
committed
Install 7-Zip without confirmation if it is missing
This is to allow unattended CI builds for the SFX installers. Once we have released a new net-installer for the SDK we can remove the check for 7za altogether as the SDK ships 7-Zip by default since the previous commit. Signed-off-by: Sebastian Schuberth <[email protected]>
1 parent dd75bc1 commit a64fe11

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

net-installer/release.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ fileList="$(cd / && echo \
5353
setup-git-sdk.bat)"
5454

5555
type 7za ||
56-
pacman -S p7zip ||
56+
pacman -S --noconfirm p7zip ||
5757
die "Could not install 7-Zip"
5858

5959
echo "Creating archive" &&

portable/release.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ LIST="$LIST $SCRIPT_PATH/root/*"
5858
# Make the self-extracting package
5959

6060
type 7za ||
61-
pacman -S p7zip ||
61+
pacman -S --noconfirm p7zip ||
6262
die "Could not install 7-Zip"
6363

6464
echo "Creating archive" &&

0 commit comments

Comments
 (0)