diff --git a/Changes b/Changes index 3f951a2..7c5643f 100644 --- a/Changes +++ b/Changes @@ -1,3 +1,16 @@ +2.3.0 2018-05-26T18:18:00 + + - plenv-init: fix setenv / set usage for fish + (Finn Smith) + - use system perl by preference when installing + (Songmu) + - Don't install EUMM when installing cpanm + (skaji) + - plenv: fix ':' in head of $PLENV_HOOK_PATH + (Olivier Mengué) + - Don't overwrite exit status at END block + (Syohei YOSHIDA) + 2.2.0 2016-01-21T11:33:00 - Fix fork bomb issue and cleanup diff --git a/libexec/plenv-completions b/libexec/plenv-completions index 0389b40..266e9ef 100755 --- a/libexec/plenv-completions +++ b/libexec/plenv-completions @@ -11,7 +11,7 @@ if [ -z "$COMMAND" ]; then fi COMMAND_PATH="$(command -v "plenv-$COMMAND" || command -v "plenv-sh-$COMMAND")" -if grep -i "^\([#%]\|--\|//\) provide plenv completions" "$COMMAND_PATH" >/dev/null; then +if grep -i "^.*\([#%]\|--\|//\) provide plenv completions" "$COMMAND_PATH" >/dev/null; then shift exec "$COMMAND_PATH" --complete "$@" fi