Browse Source

Gracefully handle `jenv add`

pull/405/head
Josh Soref 3 years ago
parent
commit
015a88631c
  1. 5
      libexec/jenv-add

5
libexec/jenv-add

@ -4,6 +4,11 @@ @@ -4,6 +4,11 @@
set -e
[ -n "$JENV_DEBUG" ] && set -x
if [ "$#" -eq 0 ]; then
jenv help add
exit 1
fi
# Provide jenv completions
if [ "$1" = "--complete" ]; then
echo "--skip-existing"

Loading…
Cancel
Save