aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDmitry Klionsky <[email protected]>2016-04-11 11:48:37 +0300
committerDmitry Klionsky <[email protected]>2016-04-11 11:48:37 +0300
commit3a3a7461548b8ef28989a49829529ce26614b4d4 (patch)
tree7257c89a209360d7b2817ec7d128c8d0c5dc333b
parentedced9e11a682a9484e7ad7eab2cc248d7cf8279 (diff)
downloadkerl-3a3a7461548b8ef28989a49829529ce26614b4d4.tar.gz
kerl-3a3a7461548b8ef28989a49829529ce26614b4d4.tar.bz2
kerl-3a3a7461548b8ef28989a49829529ce26614b4d4.zip
Use dot instead of source
In Ubuntu /bin/sh is /bin/dash, which doesn't support the source command.
-rwxr-xr-xkerl2
1 files changed, 1 insertions, 1 deletions
diff --git a/kerl b/kerl
index 68f3750..6944a5c 100755
--- a/kerl
+++ b/kerl
@@ -66,7 +66,7 @@ KERL_BUILD_PLT=
mkdir -p "$KERL_BASE_DIR" || exit 1
# source the config file if available
-if [ -f "$KERL_CONFIG" ]; then source "$KERL_CONFIG"; fi
+if [ -f "$KERL_CONFIG" ]; then . "$KERL_CONFIG"; fi
if [ -n "$_KCO" ]; then
KERL_CONFIGURE_OPTIONS="$_KCO"