aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorMike McQuaid2015-01-25 10:48:07 +0000
committerMike McQuaid2015-01-25 10:53:37 +0000
commit5705dec76a409deafe6782059a837fd0b5ec475e (patch)
tree23591a5827761af13261c718fbeaf905dd0f1b70 /Library
parent86d926cdf255f51ac62d348de3657c877d851854 (diff)
downloadhomebrew-5705dec76a409deafe6782059a837fd0b5ec475e.tar.bz2
iojs: tweak wording for clarity.
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/iojs.rb14
1 files changed, 9 insertions, 5 deletions
diff --git a/Library/Formula/iojs.rb b/Library/Formula/iojs.rb
index d313b3385..9b1cad58f 100644
--- a/Library/Formula/iojs.rb
+++ b/Library/Formula/iojs.rb
@@ -9,7 +9,7 @@ class Iojs < Formula
sha1 "f62a32113ae476095c7bcdee8dffe6c87f3675a8" => :mountain_lion
end
- keg_only "`iojs` symlinks conflict with `node` but can be used by prepending your PATH"
+ keg_only "iojs conflicts with node (which is currently more established)"
option "with-debug", "Build with debugger hooks"
@@ -24,11 +24,15 @@ class Iojs < Formula
end
def caveats; <<-EOS.undent
- `iojs` was installed without `npm`.
+ iojs was installed without npm. To install npm either:
+ brew install node
+ or follow:
+ https://github.com/npm/npm#fancy-install-unix
- To intall `npm` and have it use `iojs`, install `node` and add
- iojs to the front of your path:
- export PATH=#{Formula["iojs"].opt_bin}:$PATH
+ To prepend iojs to your PATH add to your ~/.bashrc:
+ export PATH="#{Formula["iojs"].opt_bin}:$PATH"
+
+ This will also e.g. make npm use iojs's node.
EOS
end