From 81ad86d6eec2fa654eeb13946e20e5787dc1c35e Mon Sep 17 00:00:00 2001 From: Rudolf Polzer Date: Sat, 2 Apr 2011 12:55:10 +0200 Subject: [PATCH] fix install-gamepack abort with an empty src dir --- install-gamepack.sh | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/install-gamepack.sh b/install-gamepack.sh index 1f14966..3a36c20 100755 --- a/install-gamepack.sh +++ b/install-gamepack.sh @@ -16,8 +16,12 @@ if [ -d "$pack/tools" ]; then pack="$pack/tools" fi for GAMEFILE in "$pack/games"/*.game; do - $CP "$GAMEFILE" "$dest/games/" + if [ x"$GAMEFILE" != x"$pack/games/*.game" ]; then + $CP "$GAMEFILE" "$dest/games/" + fi done for GAMEDIR in "$pack"/*.game; do - $CP_R "$GAMEDIR" "$dest/" + if [ x"$GAMEDIR" != x"$pack/*.game" ]; then + $CP_R "$GAMEDIR" "$dest/" + fi done -- 2.39.2