Skip to content

Commit

Permalink
Merge pull request #450 from mzgol/install-script
Browse files Browse the repository at this point in the history
Use bash, not sh for install scritps
  • Loading branch information
ljharb committed Jul 3, 2014
2 parents 3e5037a + fb5a51b commit d016fe0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.markdown
Expand Up @@ -8,11 +8,11 @@ First you'll need to make sure your system has a c++ compiler. For OSX, XCode w

To install you could use the [install script][2] using cURL:

curl https://raw.githubusercontent.com/creationix/nvm/v0.10.0/install.sh | sh
curl https://raw.githubusercontent.com/creationix/nvm/v0.10.0/install.sh | bash

or Wget:

wget -qO- https://raw.githubusercontent.com/creationix/nvm/v0.10.0/install.sh | sh
wget -qO- https://raw.githubusercontent.com/creationix/nvm/v0.10.0/install.sh | bash

<sub>The script clones the nvm repository to `~/.nvm` and adds the source line to your profile (`~/.bash_profile`, `~/.zshrc` or `~/.profile`).</sub>

Expand Down

0 comments on commit d016fe0

Please sign in to comment.