From 883a7c82665ecf95b09d0b0d0f11f68120bc6bd4 Mon Sep 17 00:00:00 2001 From: Max Brunsfeld Date: Tue, 30 Aug 2016 13:02:27 -0700 Subject: [PATCH] In script/test, style SVG graphs for readability --- script/test | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/script/test b/script/test index ce151d1b..0b61b0cb 100755 --- a/script/test +++ b/script/test @@ -100,7 +100,8 @@ case ${mode} in ;; SVG) - $cmd "${args[@]}" 2> >(grep -v 'Assertion failed' | dot -Tsvg > index.html) + echo "" > index.html + $cmd "${args[@]}" 2> >(grep -v 'Assertion failed' | dot -Tsvg >> index.html) echo "Wrote index.html" ;;