aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/go.rb
diff options
context:
space:
mode:
authorJack Nagel2013-03-25 13:18:31 -0500
committerJack Nagel2013-03-26 00:02:30 -0500
commitbd7a5b60a76999718b36b18cebed92203ad4e2a0 (patch)
tree34f1ab8a753b803ab77f865f26a8d3282a1ec544 /Library/Formula/go.rb
parentfa490a2636893da104b1124df5e74bceba859306 (diff)
downloadhomebrew-bd7a5b60a76999718b36b18cebed92203ad4e2a0.tar.bz2
go: fix quoting in test
Diffstat (limited to 'Library/Formula/go.rb')
-rw-r--r--Library/Formula/go.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/Library/Formula/go.rb b/Library/Formula/go.rb
index 5be0a9f5f..d68cc2106 100644
--- a/Library/Formula/go.rb
+++ b/Library/Formula/go.rb
@@ -82,9 +82,9 @@ class Go < Formula
prefix.install(Dir['*'] - ['include'])
end
- def test
+ test do
cd "#{prefix}/src" do
- system './run.bash --no-rebuild'
+ system "./run.bash", "--no-rebuild"
end
end
end