Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ignore 107 retcode from zypper when installing windows dependencies #32

Merged
merged 2 commits into from
Sep 16, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# 0.3.1.2342 (2021-09-14)
# 0.3.1.2342 (2021-09-16)
- Fixed build for windows on github https://github.com/GrandOrgue/grandorgue/issues/29
- Fixed crash on OSx when opening some pannels https://github.com/oleg68/GrandOrgue/issues/94
- Updated help with changes in menus and Settings... dialog https://github.com/GrandOrgue/grandorgue/issues/17
- The project has been moved to the new official GrandOrgue repository https://github.com/GrandOrgue/grandorgue
Expand Down
2 changes: 1 addition & 1 deletion build-scripts/for-win64/prepare-ubuntu-20.sh
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ sudo zypper --gpg-auto-import-keys refresh

sudo mkdir /zypper

sudo zypper -vv --installroot /zypper install -y mingw64-filesystem
sudo zypper -vv --installroot /zypper install -y mingw64-filesystem || [ $? -eq 107 ]
sudo zypper -vv --installroot /zypper install -y mingw64-zlib1 mingw64-zlib-devel
sudo zypper -vv --installroot /zypper install -y mingw64-libgnurx0 mingw64-libgnurx-devel
sudo zypper -vv --installroot /zypper install -y mingw64-fftw3 mingw64-fftw3-devel
Expand Down