summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xauto-installer.sh1
-rw-r--r--includes/generic-includes.sh5
2 files changed, 4 insertions, 2 deletions
diff --git a/auto-installer.sh b/auto-installer.sh
index 6455020..2a74442 100755
--- a/auto-installer.sh
+++ b/auto-installer.sh
@@ -105,6 +105,7 @@ while [ -z "$MINSCRIPT" ]; do
PATCHES="iwd/install-patch-uk-fix.sh iwd/install-patch-us.sh"
WINDOWSFILES="3dfx.dll config.exe icewind.ini keymap.ini language.ini mpicewnd.mpi"
CDNO=2
+ ;;
* )
echo "Unrecognised CD - please select game from menu"
choosegame
diff --git a/includes/generic-includes.sh b/includes/generic-includes.sh
index 1e0e89d..97988d5 100644
--- a/includes/generic-includes.sh
+++ b/includes/generic-includes.sh
@@ -143,11 +143,12 @@ function copylower
# usage: copylower source destination
if [ -d "$1" ]; then
for filename in $(find "$1" -type f); do
- lowerpath="$(echo $filename|gawk -F "$1" '{print $2}'|tr A-Z a-z)"
+ lowerpath="$(basename $filename |tr A-Z a-z)"
cp -f "$filename" "$2/$lowerpath" || die
done
elif [ -f "$1" ]; then
- cp -f "$(echo $1|tr A-Z a-z)" "$2"
+ lowername="$(basename $1|tr A-Z a-z)"
+ cp -f "$1" "$2"/$lowername
fi
}