diff options
| author | Jack Nagel | 2013-03-25 13:18:56 -0500 | 
|---|---|---|
| committer | Jack Nagel | 2013-03-26 00:02:31 -0500 | 
| commit | b05fd6c2129b64fb921f006788810fe27d7c25cc (patch) | |
| tree | 9f250181aca0c3e20bf2f0ae8fd6e45f95db664b /Library/Formula/sqliteman.rb | |
| parent | a9f59cc015d17e769d2134f4515e0a451040cb70 (diff) | |
| download | homebrew-b05fd6c2129b64fb921f006788810fe27d7c25cc.tar.bz2 | |
sqliteman: fix quoting in test
Diffstat (limited to 'Library/Formula/sqliteman.rb')
| -rw-r--r-- | Library/Formula/sqliteman.rb | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/Library/Formula/sqliteman.rb b/Library/Formula/sqliteman.rb index 5cbc77322..ef4c2470a 100644 --- a/Library/Formula/sqliteman.rb +++ b/Library/Formula/sqliteman.rb @@ -20,7 +20,7 @@ class Sqliteman < Formula      end    end -  def test -    system "#{bin}/sqliteman", '--langs' +  test do +    system "#{bin}/sqliteman", "--langs"    end  end  | 
