From 0cbf4175bd6e611e6cf26a21d0426f8c67d363f702a45c9c4609205c387b08db Mon Sep 17 00:00:00 2001 From: Marcus Meissner Date: Fri, 7 Nov 2014 20:01:50 +0000 Subject: [PATCH] Accepting request 260279 from home:Ledest:misc fix bashisms in wisotool script OBS-URL: https://build.opensuse.org/request/show/260279 OBS-URL: https://build.opensuse.org/package/show/Emulators/wine?expand=0&rev=246 --- wine.changes | 5 +++++ wisotool | 6 +++--- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/wine.changes b/wine.changes index 01f56c7..1c115fb 100644 --- a/wine.changes +++ b/wine.changes @@ -8,6 +8,11 @@ Sat Nov 1 07:50:51 UTC 2014 - meissner@suse.com - Various bug fixes. - updated winetricks +------------------------------------------------------------------- +Sun Oct 19 20:36:00 UTC 2014 - Led + +- fix bashisms in wisotool script + ------------------------------------------------------------------- Fri Oct 17 12:06:51 UTC 2014 - meissner@suse.com diff --git a/wisotool b/wisotool index 8f46078..bca30ad 100644 --- a/wisotool +++ b/wisotool @@ -8895,7 +8895,7 @@ _load_steam_app() then # FIXME: Should we perhaps sha1sum? That would get messy... cd steamapps - IFS=$',' + IFS="," for x in $game_extra_files do while true @@ -8949,7 +8949,7 @@ _load_steam_app() cp -r "$steam_dir/steamapps/$game_cache_file" "$WISOTOOL_CACHE/$PACKAGE" if test ! "$game_extra_files" = "" then - IFS=$',' + IFS="," for x in $game_extra_files do cp "$steam_dir/steamapps/$x" "$WISOTOOL_CACHE/$PACKAGE" @@ -8962,7 +8962,7 @@ _load_steam_app() cp -r "$WISOTOOL_CACHE/$PACKAGE/$game_cache_file" "$steam_dir/steamapps" if test ! "$game_extra_files" = "" then - IFS=$',' + IFS="," for x in $game_extra_files do cp "$WISOTOOL_CACHE/$PACKAGE/$x" "$steam_dir/steamapps"