Skip to content
This repository was archived by the owner on Sep 26, 2024. It is now read-only.

Commit 1a30835

Browse files
committed
Disable wine 8.0 installs. Fix #148.
1 parent 3bf7c78 commit 1a30835

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# Changelog
22
* 3.7.1
33
- Add `-V|--verbose` to installer. Fix #165. [T. H. Wright]
4+
- Disable wine 8.0 installs. Fix #148. [T. H. Wright]
45
* 3.7.0
56
- Decoupled script from `zenity` and compatible with `dialog` and `whiptail`. Fix #104. [T. H. Wright]
67
- Make bash path environment agnostic [Vskillet]

LogosLinuxInstaller.sh

+3-1
Original file line numberDiff line numberDiff line change
@@ -615,7 +615,9 @@ wineBinaryVersionCheck() {
615615
if [ -x "${TESTBINARY}" ]; then
616616
TESTWINEVERSION=$("$TESTBINARY" --version | awk -F' ' '{print $1}' | awk -F'-' '{print $2}' | awk -F'.' '{print $1"."$2}');
617617
if (( $(echo "$TESTWINEVERSION >= $WINE_MINIMUM" | bc -l) )); then
618-
return 0;
618+
if (( $(echo "$TESTWINEVERSION != 8.0" | bc -l) )); then
619+
return 0;
620+
fi
619621
elif [[ ${TESTBINARY} =~ .*"Proton - Experimental".* ]]; then
620622
return 0;
621623
# If it is a symlink, check its actual path. If it is Proton, let it pass.

0 commit comments

Comments
 (0)