aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/hub.rb
diff options
context:
space:
mode:
authorMax Howell2010-01-24 13:23:50 +0000
committerMax Howell2010-01-24 13:24:07 +0000
commit16dc9ebc292a6644b7d1c47b7121b28062c7fc3e (patch)
tree1facd36e70f3932dfa9a22d79f38181c2c8c9f3a /Library/Formula/hub.rb
parent65ba7eb34550ddcae3b327c2b84587234ef90d6f (diff)
downloadhomebrew-16dc9ebc292a6644b7d1c47b7121b28062c7fc3e.tar.bz2
Don't break for paths with spaces
Diffstat (limited to 'Library/Formula/hub.rb')
-rw-r--r--Library/Formula/hub.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Formula/hub.rb b/Library/Formula/hub.rb
index 9265beb15..6659b94bd 100644
--- a/Library/Formula/hub.rb
+++ b/Library/Formula/hub.rb
@@ -12,6 +12,6 @@ class Hub <Formula
end
def install
- system "rake install prefix=#{prefix}"
+ system "rake", "install", "prefix=#{prefix}"
end
end