diff options
author | Nick White <git@njw.me.uk> | 2010-02-09 16:59:21 +0000 |
---|---|---|
committer | Nick White <git@njw.me.uk> | 2010-02-09 16:59:21 +0000 |
commit | d44154ecfafb9bf183e201dadc0fd1ed6310fbd1 (patch) | |
tree | 47aaaea23e2054bf40b3a4fad4d50996ae49b175 /iwd | |
parent | 920ac6e2414eb1840104100545958d857446f296 (diff) | |
download | gemrb-gameinstallers-d44154ecfafb9bf183e201dadc0fd1ed6310fbd1.tar.bz2 gemrb-gameinstallers-d44154ecfafb9bf183e201dadc0fd1ed6310fbd1.zip |
Use . rather than source to avoid bashism
Diffstat (limited to 'iwd')
-rwxr-xr-x | iwd/install-2cd-extra.sh | 4 | ||||
-rwxr-xr-x | iwd/install-2cd-minimal.sh | 4 | ||||
-rwxr-xr-x | iwd/install-patch-intl.sh | 4 | ||||
-rwxr-xr-x | iwd/install-patch-uk-fix.sh | 4 |
4 files changed, 8 insertions, 8 deletions
diff --git a/iwd/install-2cd-extra.sh b/iwd/install-2cd-extra.sh index 51eda70..ff3a8fc 100755 --- a/iwd/install-2cd-extra.sh +++ b/iwd/install-2cd-extra.sh @@ -17,8 +17,8 @@ # Icewind Dale (2CD version) extra content scriptdir="$(dirname $0)"/.. -source "$scriptdir/includes/generic-includes.sh" -source "$scriptdir/includes/cd-includes.sh" +. "$scriptdir/includes/generic-includes.sh" +. "$scriptdir/includes/cd-includes.sh" parseargs "$@" diff --git a/iwd/install-2cd-minimal.sh b/iwd/install-2cd-minimal.sh index be9a7e4..54064b4 100755 --- a/iwd/install-2cd-minimal.sh +++ b/iwd/install-2cd-minimal.sh @@ -17,8 +17,8 @@ # Icewind Dale (2CD version) minimal scriptdir="$(dirname $0)"/.. -source "$scriptdir/includes/generic-includes.sh" -source "$scriptdir/includes/cd-includes.sh" +. "$scriptdir/includes/generic-includes.sh" +. "$scriptdir/includes/cd-includes.sh" parseargs "$@" diff --git a/iwd/install-patch-intl.sh b/iwd/install-patch-intl.sh index 7dfe53f..06f8d7f 100755 --- a/iwd/install-patch-intl.sh +++ b/iwd/install-patch-intl.sh @@ -24,8 +24,8 @@ patch_url="http://www.sorcerers.net/Games2/IWD/iwdpatch106.exe" patch_name="$(basename $patch_url)" scriptdir="$(dirname $0)"/.. -source "$scriptdir/includes/generic-includes.sh" -source "$scriptdir/includes/patch-includes.sh" +. "$scriptdir/includes/generic-includes.sh" +. "$scriptdir/includes/patch-includes.sh" parseargs "$@" diff --git a/iwd/install-patch-uk-fix.sh b/iwd/install-patch-uk-fix.sh index f137a92..6b6e630 100755 --- a/iwd/install-patch-uk-fix.sh +++ b/iwd/install-patch-uk-fix.sh @@ -25,8 +25,8 @@ patch_url="http://www.sorcerers.net/Games2/IWD/iwdukpatch.exe" patch_name="$(basename $patch_url)" scriptdir="$(dirname $0)"/.. -source "${scriptdir}/includes/generic-includes.sh" -source "${scriptdir}/includes/patch-includes.sh" +. "${scriptdir}/includes/generic-includes.sh" +. "${scriptdir}/includes/patch-includes.sh" parseargs "$@" |