go: fix quoting in test

This commit is contained in:
Jack Nagel 2013-03-25 13:18:31 -05:00
parent 241433b777
commit 4778e0da1b

View file

@ -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