diff options
author | Mark Allen <[email protected]> | 2016-04-13 15:16:46 -0500 |
---|---|---|
committer | Mark Allen <[email protected]> | 2016-04-13 15:16:46 -0500 |
commit | bf38e6c600826b9f759555f9a74e947d1fbb5a52 (patch) | |
tree | d55b2f75466d01c00b382bd4ff4ac96d68637952 | |
parent | 961cdb0e8c1088a5995f4161596c430caa26d08c (diff) | |
parent | 3a3a7461548b8ef28989a49829529ce26614b4d4 (diff) | |
download | kerl-bf38e6c600826b9f759555f9a74e947d1fbb5a52.tar.gz kerl-bf38e6c600826b9f759555f9a74e947d1fbb5a52.tar.bz2 kerl-bf38e6c600826b9f759555f9a74e947d1fbb5a52.zip |
Merge pull request #115 from ten0s/master
Use dot instead of source
-rwxr-xr-x | kerl | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -70,7 +70,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" |