Skip to content

Commit

Permalink
Don't attempt to install i686 7zip.
Browse files Browse the repository at this point in the history
That package seems to be gone now.
  • Loading branch information
jeremyd2019 committed Jul 29, 2024
1 parent ff369c2 commit 8de1983
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build32.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
- uses: jeremyd2019/setup-msys2@v2_build32
with:
msystem: MINGW32
install: tar mingw-w64-i686-7zip mingw-w64-x86_64-7zip mingw-w64-x86_64-zstd
install: tar mingw-w64-x86_64-7zip mingw-w64-i686-xz mingw-w64-x86_64-zstd
update: true
bitness: 32

Expand Down
4 changes: 2 additions & 2 deletions create-sfx.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ if [ ! -f "$BASE.exe" ]; then
fi
echo "$CHECKSUM $BASE.exe" | sha256sum --quiet --check
if [ ! -d "$BASE" ]; then
7z e -o"$BASE" "$DIR/_cache/$NAME.exe"
/mingw64/bin/7z e -o"$BASE" "$DIR/_cache/$NAME.exe"
fi

NAME="7z22.01-zstd-x32"
Expand All @@ -27,7 +27,7 @@ if [ ! -f "$BASE32.exe" ]; then
fi
echo "$CHECKSUM $BASE32.exe" | sha256sum --quiet --check
if [ ! -d "$BASE32" ]; then
7z e -o"$BASE32" "$DIR/_cache/$NAME.exe"
/mingw64/bin/7z e -o"$BASE32" "$DIR/_cache/$NAME.exe"
fi

# Creat SFX installer
Expand Down
1 change: 0 additions & 1 deletion make-msys2-installer
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,6 @@ create_chroot_system() {

main() {
pacman -S --noconfirm --needed \
"${MINGW_PACKAGE_PREFIX}-7zip" \
"${MINGW_PACKAGE_PREFIX}-xz" \
"${MINGW_PACKAGE_PREFIX}-zstd" \
"tar"
Expand Down

0 comments on commit 8de1983

Please sign in to comment.