diff options
| author | Jack Nagel | 2013-03-25 13:18:44 -0500 | 
|---|---|---|
| committer | Jack Nagel | 2013-03-26 00:02:31 -0500 | 
| commit | a9f59cc015d17e769d2134f4515e0a451040cb70 (patch) | |
| tree | 098fb56c43719cdf9fd9ffefff1314018fb7a483 | |
| parent | bd7a5b60a76999718b36b18cebed92203ad4e2a0 (diff) | |
| download | homebrew-a9f59cc015d17e769d2134f4515e0a451040cb70.tar.bz2 | |
open-mesh: fix quoting in test
| -rw-r--r-- | Library/Formula/open-mesh.rb | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/Library/Formula/open-mesh.rb b/Library/Formula/open-mesh.rb index cca29b6c8..eb7c297ec 100644 --- a/Library/Formula/open-mesh.rb +++ b/Library/Formula/open-mesh.rb @@ -18,7 +18,7 @@ class OpenMesh < Formula      end    end -  def test -    system "#{bin}/mconvert", '-help' +  test do +    system "#{bin}/mconvert", "-help"    end  end | 
