Skip to content

Commit

Permalink
plenv 2.2.0
Browse files Browse the repository at this point in the history
- Support fish shell
- Many bug fixes

Closes Homebrew/legacy-homebrew#48325.

Signed-off-by: Dominyk Tiller <dominyktiller@gmail.com>
  • Loading branch information
syohex authored and DomT4 committed Jan 22, 2016
1 parent e479a50 commit c9001e0
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions Formula/plenv.rb
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
class Plenv < Formula
desc "Perl binary manager"
homepage "https://github.com/tokuhirom/plenv"
url "https://github.com/tokuhirom/plenv/archive/2.1.1.tar.gz"
sha256 "2753944511093cb6cb3ed5e8c105bfb1b100c621c1e6669c2ef48a0532b3f475"
url "https://github.com/tokuhirom/plenv/archive/2.2.0.tar.gz"
sha256 "248c5d8196077d217f98d566bd235cbe3332583851737782852bb2fccf840111"

head "https://github.com/tokuhirom/plenv.git"

Expand All @@ -18,6 +18,8 @@ def caveats; <<-EOS.undent
if which plenv > /dev/null; then eval "$(plenv init -)"; fi
With zsh, add to your .zshrc:
if which plenv > /dev/null; then eval "$(plenv init - zsh)"; fi
With fish, add to your config.fish
if plenv > /dev/null; plenv init - | source ; end
EOS
end
end

0 comments on commit c9001e0

Please sign in to comment.