Skip to content

Commit

Permalink
winetricks_set_wineprefix: fix shellcheck quoting issues
Browse files Browse the repository at this point in the history
  • Loading branch information
austin987 committed Dec 14, 2023
1 parent fe404b2 commit d52625e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/winetricks
Original file line number Diff line number Diff line change
Expand Up @@ -5053,9 +5053,9 @@ winetricks_set_wineprefix()
if test -d "${W_DRIVE_C}/windows/syswow64"; then
# Check the bitness of wineserver + wine binary, used later to determine if we're on a WOW setup (no wine64)
# https://github.com/Winetricks/winetricks/issues/2030
WINESERVER_BIN="$(which ${WINESERVER})"
WINESERVER_BIN="$(which "${WINESERVER}")"
_W_wineserver_binary_arch="$(winetricks_get_file_arch "${WINESERVER_BIN}")"
WINE_BIN="$(which ${WINE})"
WINE_BIN="$(which "${WINE}")"
_W_wine_binary_arch="$(winetricks_get_file_arch "${WINE_BIN}")"

# determine wow64 type (new/old)
Expand Down

0 comments on commit d52625e

Please sign in to comment.