Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion libexec/plenv-completions
Original file line number Diff line number Diff line change
Expand Up @@ -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