diff options
author | Holger Levsen <holger@layer-acht.org> | 2015-03-12 20:37:15 +0100 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-03-12 20:37:15 +0100 |
commit | 15d2c9447f4dd0f256cbd30a7b4bc1760c58a5d1 (patch) | |
tree | e3f2df93a1112c768e80823a76deda23530778f4 | |
parent | 9f79f74c1ffaae0e5c4deaf58eb6269a83f7b1bd (diff) | |
download | jenkins.debian.net-15d2c9447f4dd0f256cbd30a7b4bc1760c58a5d1.tar.xz |
reproducible: use full path
-rwxr-xr-x | bin/reproducible_html_graphs.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/reproducible_html_graphs.sh b/bin/reproducible_html_graphs.sh index ee0a2dfe..46ed46bc 100755 --- a/bin/reproducible_html_graphs.sh +++ b/bin/reproducible_html_graphs.sh @@ -420,7 +420,7 @@ create_pkg_sets_page() { # redo pngs once a day if [ ! -f /var/lib/jenkins/userContent/$SUITE/$ARCH/$PNG ] || [ ! -z $(find /var/lib/jenkins/userContent/$SUITE/$ARCH -maxdepth 1 -mtime +0 -name $PNG) ] ; then create_png_from_table 6 $SUITE/$ARCH/$PNG ${META_PKGSET[$i]} - convert $SUITE/$ARCH/$PNG -adaptive-resize 160x80 $SUITE/$ARCH/$THUMB + convert /var/lib/jenkins/userContent/$SUITE/$ARCH/$PNG -adaptive-resize 160x80 /var/lib/jenkins/userContent/$SUITE/$ARCH/$THUMB fi write_page "<p><a href=\"/userContent/$SUITE/$ARCH/$PNG\"><img src=\"/userContent/$SUITE/$ARCH/$PNG\" alt=\"${MAINLABEL[6]}\"></a>" write_page "<br />The package set '${META_PKGSET[$i]}' in $SUITE/$ARCH consists of: <br />" |