report-targets: tweak targets

There's yet another m-p target class, ve/*; and
let's put a semicolon after anything else, too.
This commit is contained in:
Michael Shigorin 2017-01-29 15:01:03 +03:00
parent c9806d9b5c
commit 949733a9b4

View File

@ -21,10 +21,10 @@ while read first second third rest; do
for to in $TO; do for to in $TO; do
out=" \"$FROM\" -> \"$to\"" out=" \"$FROM\" -> \"$to\""
case $to in case $to in
*distro/*|*vm/*) *distro/*|*vm/*|*ve/*)
echo "$out [weight=10];";; echo "$out [weight=10];";;
*) *)
echo "$out";; echo "$out;";;
esac esac
done done
done done