diff options
| author | Adam Vandenberg | 2012-03-16 07:12:19 -0700 |
|---|---|---|
| committer | Adam Vandenberg | 2012-03-16 07:12:19 -0700 |
| commit | a112e4bd97a66b305455e670c8f1177623878187 (patch) | |
| tree | 1580eb09d6eb1f40d4bc4501041ad47a8e97ebf3 /Library/Formula | |
| parent | 2f5248f36f6ff292e3e68c09c96693b226ac3ccd (diff) | |
| download | homebrew-a112e4bd97a66b305455e670c8f1177623878187.tar.bz2 | |
coffee-script: also check if node is installed w/ brew
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/coffee-script.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Formula/coffee-script.rb b/Library/Formula/coffee-script.rb index 2c13be973..42cde749c 100644 --- a/Library/Formula/coffee-script.rb +++ b/Library/Formula/coffee-script.rb @@ -12,7 +12,7 @@ class NodeRequired < Requirement EOS end def satisified? - which 'node' + Formula.factory("node").installed? or which('node') end def fatal? true |
