Skip to content
This repository has been archived by the owner on Jul 4, 2023. It is now read-only.

Commit

Permalink
node: fix indent
Browse files Browse the repository at this point in the history
  • Loading branch information
adamv committed Feb 2, 2013
1 parent 31390d0 commit c82d57e
Showing 1 changed file with 11 additions and 12 deletions.
23 changes: 11 additions & 12 deletions Library/Formula/node.rb
Expand Up @@ -5,9 +5,8 @@ class PythonVersion < Requirement

satisfy { `python -c 'import sys;print(sys.version[:3])'`.strip.to_f >= 2.6 }

def message; <<-EOS.undent
Node's build system, gyp, requires Python 2.6 or newer.
EOS
def message;
"Node's build system, gyp, requires Python 2.6 or newer."
end
end

Expand All @@ -19,15 +18,15 @@ def modules_folder
end

def message; <<-EOS.undent
The homebrew node recipe now (beginning with 0.8.0) comes with npm.
It appears you already have npm installed at #{modules_folder}/npm.
To use the npm that comes with this recipe,
first uninstall npm with `npm uninstall npm -g`.
Then run this command again.
If you would like to keep your installation of npm instead of
using the one provided with homebrew,
install the formula with the --without-npm option added.
The homebrew node recipe now (beginning with 0.8.0) comes with npm.
It appears you already have npm installed at #{modules_folder}/npm.
To use the npm that comes with this recipe,
first uninstall npm with `npm uninstall npm -g`.
Then run this command again.
If you would like to keep your installation of npm instead of
using the one provided with homebrew,
install the formula with the --without-npm option added.
EOS
end

Expand Down

0 comments on commit c82d57e

Please sign in to comment.