From 81658389cf273e2f1c29d80fdd972c2a0591f544 Mon Sep 17 00:00:00 2001 From: Don Armstrong Date: Sat, 22 Oct 2022 09:22:20 -0700 Subject: [PATCH] fix rc bugs current release missing - Load from tempdir, not empty variable --- dograph | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/dograph b/dograph index 9fc3b56..935a130 100755 --- a/dograph +++ b/dograph @@ -43,14 +43,14 @@ set linetype 8 lc rgb "black" lw 1 set linetype 9 lc rgb "gray50" lw 1 set linetype cycle 9 set output "/srv/bugs.debian.org/www/bugscan/graph.png" -plot "$tempdir/rc_bugs_total" using 1:2 with lines, "$tempdir/rc_bugs_next_release" using 1:2 with lines, "$rc_bugs_current_release" using 1:2 with lines +plot "$tempdir/rc_bugs_total" using 1:2 with lines, "$tempdir/rc_bugs_next_release" using 1:2 with lines, "$tempdir/rc_bugs_current_release" using 1:2 with lines set xrange ["$previous_release":] set output "/srv/bugs.debian.org/www/bugscan/graph-release.png" -plot "$tempdir/rc_bugs_total" using 1:2 with lines, "$tempdir/rc_bugs_next_release" using 1:2 with lines, "$rc_bugs_current_release" using 1:2 with lines +plot "$tempdir/rc_bugs_total" using 1:2 with lines, "$tempdir/rc_bugs_next_release" using 1:2 with lines, "$tempdir/rc_bugs_current_release" using 1:2 with lines set xrange ["$previous_month":] set format x "%d\n%m\n%Y" set output "/srv/bugs.debian.org/www/bugscan/graph-month.png" -plot "$tempdir/rc_bugs_total" using 1:2 with lines, "$tempdir/rc_bugs_next_release" using 1:2 with lines, "$rc_bugs_current_release" using 1:2 with lines +plot "$tempdir/rc_bugs_total" using 1:2 with lines, "$tempdir/rc_bugs_next_release" using 1:2 with lines, "$tempdir/rc_bugs_current_release" using 1:2 with lines quit EOF -- 2.39.2