aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMark Allen <[email protected]>2017-07-31 21:47:56 -0500
committerGitHub <[email protected]>2017-07-31 21:47:56 -0500
commit85d97cac82e6125d13d53cf8f3b7c5f8433d5e2c (patch)
tree0cd10ca2d62fa864cc2897415a3bfd3ac0f9c866
parent01af26f4a6106adc8cc8b088dc692065dadb84f0 (diff)
parenta9b102c32fde2183a84daa514cabd81d8f0bcc21 (diff)
downloadkerl-85d97cac82e6125d13d53cf8f3b7c5f8433d5e2c.tar.gz
kerl-85d97cac82e6125d13d53cf8f3b7c5f8433d5e2c.tar.bz2
kerl-85d97cac82e6125d13d53cf8f3b7c5f8433d5e2c.zip
Merge pull request #219 from shino/fix-show-plt-path
Fix "kerl plt" to show actual path
-rwxr-xr-xkerl3
1 files changed, 2 insertions, 1 deletions
diff --git a/kerl b/kerl
index 50c33f3..c86d782 100755
--- a/kerl
+++ b/kerl
@@ -1641,7 +1641,8 @@ case "$1" in
fi
;;
plt)
- if ! do_plt get_active_path; then
+ ACTIVE_PATH=`get_active_path`
+ if ! do_plt "$ACTIVE_PATH"; then
exit 1;
fi
;;