aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorAdam Vandenberg2011-09-30 08:05:28 -0700
committerAdam Vandenberg2011-09-30 08:05:28 -0700
commit0aa9fe73f8005d65ef2277fb1f2818bd4d404421 (patch)
tree3fa4e0423ece54a269163f3b8aa796812b597bdd /Library
parent4cf74bc9723216b1847936dc72f99d4fe5926ad9 (diff)
downloadbrew-0aa9fe73f8005d65ef2277fb1f2818bd4d404421.tar.bz2
Fix gem install help for brew-server
Sinatra gem must be installed for the system ruby.
Diffstat (limited to 'Library')
-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