diff options
| author | Adam Vandenberg | 2011-09-30 08:05:28 -0700 |
|---|---|---|
| committer | Adam Vandenberg | 2011-09-30 08:05:28 -0700 |
| commit | 41e85ab8878f87728f1ad32687e301f3dee57294 (patch) | |
| tree | 311c802fdc63941b77dfe374ab5e8f3c17680e42 | |
| parent | 7e30def5242457ea6fc0cd6ad94bb23518d9e5da (diff) | |
| download | homebrew-41e85ab8878f87728f1ad32687e301f3dee57294.tar.bz2 | |
Fix gem install help for brew-server
Sinatra gem must be installed for the system ruby.
| -rwxr-xr-x | Library/Contributions/examples/brew-server | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Contributions/examples/brew-server b/Library/Contributions/examples/brew-server index 58537d447..ab0c7e469 100755 --- a/Library/Contributions/examples/brew-server +++ b/Library/Contributions/examples/brew-server @@ -15,7 +15,7 @@ begin require 'sinatra' rescue LoadError onoe 'Sinatra required but not found' - puts 'To install: gem install sinatra' + puts 'To install: /usr/bin/gem install sinatra' exit 1 end |
