fix install-gamepack abort with an empty src dir
This commit is contained in:
parent
5b8b0dd6b2
commit
81ad86d6ee
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user