homebrew-core/Formula/nvm.rb
Trevor Powell b093678b0d nvm 0.17.3
Closes Homebrew/homebrew#33441.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2014-10-21 19:55:34 +01:00

28 lines
775 B
Ruby

require "formula"
class Nvm < Formula
homepage "https://github.com/creationix/nvm"
head "https://github.com/creationix/nvm.git"
url "https://github.com/creationix/nvm/archive/v0.17.3.tar.gz"
sha1 "e77d1441196b8efeb9b981e5f7873a2f0871fbdb"
def install
prefix.install "nvm.sh"
bash_completion.install "bash_completion" => "nvm"
end
def caveats; <<-EOS.undent
Add the following to $HOME/.bashrc, $HOME/.zshrc, or your shell's
equivalent configuration file:
source $(brew --prefix nvm)/nvm.sh
Node installs will be lost upon upgrading nvm. Add the following above
the source line to move install location and prevent this:
export NVM_DIR=~/.nvm
Type `nvm help` for further information.
EOS
end
end