Merge remote-tracking branch 'kc/new/enh/bug_6540' into kcmaster
This commit is contained in:
commit
75a4efa704
1 changed files with 7 additions and 4 deletions
11
debian/scripts/koha-create
vendored
11
debian/scripts/koha-create
vendored
|
@ -112,11 +112,14 @@ while true ; do
|
|||
done
|
||||
|
||||
# Load the configfile given on the command line
|
||||
if [ -e "$configfile" ]
|
||||
if [ "$configfile" != "" ]
|
||||
then
|
||||
. "$configfile"
|
||||
else
|
||||
die "$configfile does not exist.";
|
||||
if [ -e "$configfile" ]
|
||||
then
|
||||
. "$configfile"
|
||||
else
|
||||
die "$configfile does not exist.";
|
||||
fi
|
||||
fi
|
||||
|
||||
# Make sure options from the command line get the highest precedence
|
||||
|
|
Loading…
Reference in a new issue