Skip to content

Commit

Permalink
graphite2: eliminate unnecessary backticks
Browse files Browse the repository at this point in the history
  • Loading branch information
DomT4 committed Jul 4, 2015
1 parent baf4a80 commit 468173c
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions Formula/graphite2.rb
Expand Up @@ -19,14 +19,13 @@ class Graphite2 < Formula
end

def install
args = std_cmake_args
system "cmake", ".", *args
system "cmake", *std_cmake_args
system "make", "install"
end

test do
resource("testfont").stage do
shape = `#{bin}/gr2fonttest Simple-Graphite-Font.ttf "abcde"`
shape = shell_output("#{bin}/gr2fonttest Simple-Graphite-Font.ttf 'abcde'")
assert_match /67.*36.*37.*38.*71/m, shape
end
end
Expand Down

0 comments on commit 468173c

Please sign in to comment.