diff options
Diffstat (limited to 'pst/install-2cd-extra.sh')
-rwxr-xr-x | pst/install-2cd-extra.sh | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/pst/install-2cd-extra.sh b/pst/install-2cd-extra.sh index f37e173..82e9002 100755 --- a/pst/install-2cd-extra.sh +++ b/pst/install-2cd-extra.sh @@ -17,8 +17,8 @@ # Extra Planescape: Torment (2CD version) content (so CDs aren't needed) scriptdir="$(dirname $0)"/.. -source "$scriptdir/includes/generic-includes.sh" -source "$scriptdir/includes/cd-includes.sh" +source "${scriptdir}/includes/generic-includes.sh" +source "${scriptdir}/includes/cd-includes.sh" parseargs "$@" @@ -26,16 +26,16 @@ checkforbin unshield CD2="610d9f6354be741b09fc25b5e9645328" -getcd 1 $PST_2CD_MD5 data1.cab +getcd 1 "$PST_2CD_MD5" data1.cab -unshield -g OtherData -L x $CDMOUNT/data1.cab -d "$TARGETDIR" || die -unshield -g OtherData -L x $CDMOUNT/data2.cab -d "$TARGETDIR" || die +unshield -g OtherData -L x "${CDMOUNT}/data1.cab" -d "$TARGETDIR" || die +unshield -g OtherData -L x "${CDMOUNT}/data2.cab" -d "$TARGETDIR" || die -mv "$TARGETDIR"/otherdata/* "$TARGETDIR" || die -rmdir "$TARGETDIR"/otherdata || die +mv "${TARGETDIR}/otherdata/"* "$TARGETDIR" || die +rmdir "${TARGETDIR}/otherdata" || die -getcd 2 $CD2 cd2/movies4.bif +getcd 2 "$CD2" "cd2/movies4.bif" -copylower "$CDMOUNT/cd2/" "$TARGETDIR" || die +copylower "${CDMOUNT}/cd2/" "$TARGETDIR" || die setperms "$TARGETDIR" |