summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorErich Eckner <git@eckner.net>2018-05-25 11:01:47 +0200
committerErich Eckner <git@eckner.net>2018-05-25 11:01:47 +0200
commitd4f0a9cb20e25d744eae3305ee07cae4fd63f8de (patch)
treebd6532f178180e939b3c566dfd524b4b529f0aad
parent13d30d779dac2bb568f73bb0a028932586e6ec74 (diff)
downloadbuilder-d4f0a9cb20e25d744eae3305ee07cae4fd63f8de.tar.xz
lib/load-configuration: fix typos
-rwxr-xr-xlib/load-configuration4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/load-configuration b/lib/load-configuration
index 7e0ed11..9f04b0d 100755
--- a/lib/load-configuration
+++ b/lib/load-configuration
@@ -105,12 +105,12 @@ mysql_command='mysql buildmaster'
# TODO: remove this legacy part here
if [ -r "${base_dir}/conf/local.conf" ]; then
# shellcheck source=/dev/null
- "${base_dir}/conf/local.conf"
+ . "${base_dir}/conf/local.conf"
fi
if [ -r "${base_dir}/conf/common.conf" ]; then
# shellcheck source=/dev/null
- "${base_dir}/conf/common.conf"
+ . "${base_dir}/conf/common.conf"
fi
if ${i_am_the_master} && \