From 949733a9b492460045fd4586811859b0b5a3a910 Mon Sep 17 00:00:00 2001 From: Michael Shigorin Date: Sun, 29 Jan 2017 15:01:03 +0300 Subject: [PATCH] report-targets: tweak targets There's yet another m-p target class, ve/*; and let's put a semicolon after anything else, too. --- bin/report-targets | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/report-targets b/bin/report-targets index 55ca748a..1f656e2c 100755 --- a/bin/report-targets +++ b/bin/report-targets @@ -21,10 +21,10 @@ while read first second third rest; do for to in $TO; do out=" \"$FROM\" -> \"$to\"" case $to in - *distro/*|*vm/*) + *distro/*|*vm/*|*ve/*) echo "$out [weight=10];";; *) - echo "$out";; + echo "$out;";; esac done done