From 265c0d6d4ba859ed7fa13fe1847a41352e4204b4 Mon Sep 17 00:00:00 2001 From: Misty De Meo Date: Sun, 20 Aug 2023 17:30:27 -0700 Subject: [PATCH] graphviz: fix test when built without PDF --- Library/Formula/graphviz.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Library/Formula/graphviz.rb b/Library/Formula/graphviz.rb index c63ca22d7f..5230241478 100644 --- a/Library/Formula/graphviz.rb +++ b/Library/Formula/graphviz.rb @@ -88,6 +88,6 @@ def install } EOS - system "#{bin}/dot", "-Tpdf", "-o", "sample.pdf", "sample.dot" + system "#{bin}/dot", "-Txdot", "-o", "sample.xdot", "sample.dot" end end