View | Details | Raw Unified | Return to bug 6540
Collapse All | Expand All

(-)a/debian/scripts/koha-create (-5 / +7 lines)
Lines 105-115 while true ; do Link Here
105
done
105
done
106
106
107
# Load the configfile given on the command line
107
# Load the configfile given on the command line
108
if [ -e "$configfile" ]
108
if [ "$configfile" != "" ]
109
then
109
then
110
    . "$configfile"
110
    if [ -e "$configfile" ]
111
else
111
    then
112
    die "$configfile does not exist.";
112
        . "$configfile"
113
    else
114
        die "$configfile does not exist.";
115
    fi
113
fi
116
fi
114
117
115
# Make sure options from the command line get the highest precedence
118
# Make sure options from the command line get the highest precedence
116
- 

Return to bug 6540