diff options
author | Evax Software <[email protected]> | 2011-04-01 18:39:31 +0200 |
---|---|---|
committer | Evax Software <[email protected]> | 2011-04-01 18:39:31 +0200 |
commit | dc45417d8896bb10683dfc7d137e3ba394ece438 (patch) | |
tree | e93451d7741d607a1942a110c78db7b3aef36ea3 | |
parent | 33349bb6df3813ae027e91b413b873baf53cf297 (diff) | |
download | kerl-dc45417d8896bb10683dfc7d137e3ba394ece438.tar.gz kerl-dc45417d8896bb10683dfc7d137e3ba394ece438.tar.bz2 kerl-dc45417d8896bb10683dfc7d137e3ba394ece438.zip |
Add 'kerl active' command to query the active installation
-rw-r--r-- | README.md | 5 | ||||
-rwxr-xr-x | kerl | 9 |
2 files changed, 14 insertions, 0 deletions
@@ -78,6 +78,11 @@ You're now ready to work with R14B02: When your done just type: $ kerl_deactivate +Anytime you can check which installation, if any, is currently active with: + + $ kerl active + No Erlang/OTP kerl installation is currently active + Tuning ====== @@ -45,6 +45,7 @@ usage() { echo " install Install the specified release at the given location" echo " update Update the list of available releases from erlang.org" echo " list List releases, builds and installations" + echo " active Print the path of the active installation" exit 1 } @@ -296,6 +297,14 @@ case "$1" in ;; esac ;; + active) + if [ -n "$_KERL_SAVED_PATH" ]; then + echo "The current active installation is:" + echo `echo $PATH | cut -d ":" -f 1 | head -c -4` + else + echo "No Erlang/OTP kerl installation is currently active" + fi + ;; *) echo "unkwnown command: $1"; usage; exit 1 ;; |