mirror of
https://github.com/doitsujin/dxvk.git
synced 2025-03-06 20:58:37 +01:00
Fix no WINEPREFIX confirmation
This commit is contained in:
parent
85ac082cf5
commit
aa8ee5b085
1 changed files with 1 additions and 1 deletions
|
@ -9,7 +9,7 @@ WINEDEBUG=-all
|
|||
if [ -z "$WINEPREFIX" ]; then
|
||||
echo "WINEPREFIX is not set, continue? (y/N)"
|
||||
read continue
|
||||
if [ "$continue" != "y" ] || [ "$continue" != "Y" ]; then
|
||||
if [ "$continue" != "y" ] && [ "$continue" != "Y" ]; then
|
||||
exit 1
|
||||
fi
|
||||
fi
|
||||
|
|
Loading…
Add table
Reference in a new issue