aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAdam Vandenberg2011-09-30 08:05:28 -0700
committerAdam Vandenberg2011-09-30 08:05:28 -0700
commit41e85ab8878f87728f1ad32687e301f3dee57294 (patch)
tree311c802fdc63941b77dfe374ab5e8f3c17680e42
parent7e30def5242457ea6fc0cd6ad94bb23518d9e5da (diff)
downloadhomebrew-41e85ab8878f87728f1ad32687e301f3dee57294.tar.bz2
Fix gem install help for brew-server
Sinatra gem must be installed for the system ruby.
-rwxr-xr-xLibrary/Contributions/examples/brew-server2
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