Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
mmtrt committed Nov 17, 2024
1 parent 667a123 commit 661f7cd
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions deploy.sh
Original file line number Diff line number Diff line change
Expand Up @@ -91,10 +91,10 @@ echo '#!/bin/sh
CURRENTDIR="$(dirname "$(readlink -f "${0}")")"
# WINE env
export WINE="$CURRENTDIR/bin/wine"
export WINE="$CURRENTDIR/opt/wine-stable/bin/wine"
export WINEDEBUG=${WINEDEBUG:-"fixme-all"}
export WINEPREFIX=${WINEPREFIX:-"$HOME/.wine-appimage"}
export WINESERVER="$CURRENTDIR/bin/wineserver"
export WINESERVER="$CURRENTDIR/opt/wine-stable/bin/wineserver"
# DXVK env
export DXVK_HUD=${DXVK_HUD:-"0"}
Expand Down Expand Up @@ -128,10 +128,10 @@ fi
if [ -n "$1" ] && [ -e "$CURRENTDIR/opt/wine-stable/bin/$1" ] ; then
MAIN="$CURRENTDIR/opt/wine-stable/bin/$1" ; shift
elif [ -e "$CURRENTDIR/bin/$BINARY_NAME" ] ; then
MAIN="$CURRENTDIR/bin/$BINARY_NAME"
elif [ -e "$CURRENTDIR/opt/wine-stable/bin/$BINARY_NAME" ] ; then
MAIN="$CURRENTDIR/opt/wine-stable/bin/$BINARY_NAME"
else
MAIN="$CURRENTDIR/bin/wine"
MAIN="$CURRENTDIR/opt/wine-stable/bin/wine"
fi
if [ -z "$APPLICATION" ] ; then
Expand Down

0 comments on commit 661f7cd

Please sign in to comment.