diff options
Diffstat (limited to 'bg1/install-patch-intl.sh')
-rwxr-xr-x | bg1/install-patch-intl.sh | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/bg1/install-patch-intl.sh b/bg1/install-patch-intl.sh index 2acb59e..0e12853 100755 --- a/bg1/install-patch-intl.sh +++ b/bg1/install-patch-intl.sh @@ -17,8 +17,8 @@ # BG1 official international patch scriptdir="$(dirname $0)"/.. -source "$scriptdir/includes/generic-includes.sh" -source "$scriptdir/includes/patch-includes.sh" +source "${scriptdir}/includes/generic-includes.sh" +source "${scriptdir}/includes/patch-includes.sh" parseargs "$@" @@ -28,11 +28,11 @@ setuptmp getpatch http://downloads.bioware.com/baldursgate1/bgintl114315.exe -unzip $TMPDIR/bgintl114315.exe -d $TMPDIR || diesoftly -unshield -g "$LANGUAGE" -L x $TMPDIR/data1.cab -d $TMPDIR || diesoftly +unzip "${TMPDIR}/bgintl114315.exe" -d "${TMPDIR}" || diesoftly +unshield -g "$LANGUAGE" -L x "${TMPDIR}/data1.cab" -d "$TMPDIR" || diesoftly LANGUAGE="$(echo $LANGUAGE|tr A-Z a-z|tr ' ' _)" # alter formatting -cp -R $TMPDIR/"$LANGUAGE"/* "$TARGETDIR" || diesoftly +cp -R "${TMPDIR}/${LANGUAGE}/"* "$TARGETDIR" || diesoftly cleanuptmp setperms "$TARGETDIR" |