Skip to content

Commit

Permalink
Beautify output
Browse files Browse the repository at this point in the history
  • Loading branch information
kovzol committed Jan 6, 2025
1 parent 28a1e4f commit 1a35ff1
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions statements/tests/runme-graphviz
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,11 @@ for i in $FILES; do
n=$((n+1))
echo -n -e "\r$i ($n/$F_NO)\033[0K"
../pbrst-cli -g $i > $i.dot
dot -Tsvg $i.dot > $i.svg
echo "<img src=$i.svg><br>" >> $HTML
test -s $i.dot && {
dot -Tsvg $i.dot > $i.svg
echo "<img src=$i.svg><br>" >> $HTML
}
done
echo
echo -e "\rDone.\033[0K"

echo "</center></body></html>" >> $HTML

0 comments on commit 1a35ff1

Please sign in to comment.