homebrew-core/Formula/nvm.rb
Kris Williams d1b54f733e nvm 0.23.2
* Bump minor version of nvm
* Clarify install instructions, some bug reports filed where
  users were incorrectly exporting the NVM_PATH after calling
  the shell script, which would cause breakage and user confusion.
  https://github.com/creationix/nvm/issues/598

Closes Homebrew/homebrew#36176.

Signed-off-by: Tim D. Smith <git@tim-smith.us>
2015-01-23 19:58:56 -08:00

26 lines
711 B
Ruby

class Nvm < Formula
homepage "https://github.com/creationix/nvm"
head "https://github.com/creationix/nvm.git"
url "https://github.com/creationix/nvm/archive/v0.23.2.tar.gz"
sha1 "c20926c5b2f40b563e9db8d81917de3edd378d2e"
def install
prefix.install "nvm.sh"
bash_completion.install "bash_completion" => "nvm"
end
def caveats; <<-EOS.undent
Add NVM's working directory to your $HOME path (if it doesn't exist):
mkdir ~/.nvm
Add the following to $HOME/.bashrc, $HOME/.zshrc, or your shell's
equivalent configuration file:
export NVM_DIR=~/.nvm
source $(brew --prefix nvm)/nvm.sh
Type `nvm help` for further information.
EOS
end
end