Skip to content

Commit

Permalink
Vortex: Remove LC_ALL from start command (#784)
Browse files Browse the repository at this point in the history
* Vortex: Remove LC_ALL from start command

* Depressurizer: Remove LC_ALL
  • Loading branch information
sonic2kk authored Apr 13, 2023
1 parent ae59bef commit 39ba389
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions steamtinkerlaunch
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
PREFIX="/usr"
PROGNAME="SteamTinkerLaunch"
NICEPROGNAME="Steam Tinker Launch"
PROGVERS="v14.0.20230414-4"
PROGVERS="v14.0.20230414-5"
PROGCMD="${0##*/}"
SHOSTL="stl"
GHURL="https://github.com"
Expand Down Expand Up @@ -13887,7 +13887,8 @@ function addVortexStage {

function wineVortexRun {
sleep 1 # required!
LC_ALL="C" PATH="$STLPATH" LD_LIBRARY_PATH="" LD_PRELOAD="" WINE="$VORTEXWINE" WINEARCH="win64" WINEDEBUG="-all" WINEPREFIX="$VORTEXPFX" "$@" > "$VWRUN" 2>/dev/null
# LC_ALL may not be required anymore
PATH="$STLPATH" LD_LIBRARY_PATH="" LD_PRELOAD="" WINE="$VORTEXWINE" WINEARCH="win64" WINEDEBUG="-all" WINEPREFIX="$VORTEXPFX" "$@" > "$VWRUN" 2>/dev/null
}

function cleanVortex {
Expand Down Expand Up @@ -16017,7 +16018,8 @@ function startDepressurizer {
mkProjDir "$DPRSSUDIR"
cd "$DPRSSUDIR" >/dev/null || return
sleep 1
LC_ALL="C" PATH="$STLPATH" LD_LIBRARY_PATH="" LD_PRELOAD="" WINE="$DPRSWINE" WINEARCH="win64" WINEDEBUG="$DPRSWINEDEBUG" WINEPREFIX="$DPRSPFX" "$DPRSWINE" "$DPRSEXE" >/dev/null 2>/dev/null
# LC_ALL="C" was previously used here, but may not be required anymore
PATH="$STLPATH" LD_LIBRARY_PATH="" LD_PRELOAD="" WINE="$DPRSWINE" WINEARCH="win64" WINEDEBUG="$DPRSWINEDEBUG" WINEPREFIX="$DPRSPFX" "$DPRSWINE" "$DPRSEXE" >/dev/null 2>/dev/null
cd - >/dev/null || return
else
writelog "ERROR" "${FUNCNAME[0]} - Proton Wine for not found - can't start '$DPRSEXE'"
Expand Down

0 comments on commit 39ba389

Please sign in to comment.