]> git.donarmstrong.com Git - bugscan.git/commitdiff
fix rc bugs current release missing
authorDon Armstrong <don@donarmstrong.com>
Sat, 22 Oct 2022 16:22:20 +0000 (09:22 -0700)
committerDon Armstrong <don@donarmstrong.com>
Sat, 22 Oct 2022 16:22:20 +0000 (09:22 -0700)
- Load from tempdir, not empty variable

dograph

diff --git a/dograph b/dograph
index 9fc3b5648bda5d4957274ef0b4b39699c167730e..935a130dbf025799a063fbb33f23299c8fe4bc07 100755 (executable)
--- 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