diff options
author | Alexander Couzens <lynxis@fe80.eu> | 2016-07-28 22:50:12 -0400 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2016-07-29 00:01:06 -0400 |
commit | 79e84d848f0870d2afbdb8e05884afd4743ef97a (patch) | |
tree | 7d6ca21fee9252a8190ffa52360b095a5dc77893 | |
parent | fd3233fffc467895e42878d3122c18bac6a32900 (diff) | |
download | jenkins.debian.net-79e84d848f0870d2afbdb8e05884afd4743ef97a.tar.xz |
reproducible_lede: fix more path problems of call_diffoscope()
Signed-off-by: Holger Levsen <holger@layer-acht.org>
-rwxr-xr-x | bin/reproducible_lede.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/reproducible_lede.sh b/bin/reproducible_lede.sh index 0d2434c7..44caf437 100755 --- a/bin/reproducible_lede.sh +++ b/bin/reproducible_lede.sh @@ -124,9 +124,9 @@ for target in * ; do rm -f $BASE/lede/dbd/targets/$target/$subtarget/$image.html # cleanup from previous (unreproducible) tests - if needed continue fi - call_diffoscope $target/$subtarget $image + call_diffoscope targets/$target/$subtarget $image get_filesize $image - if [ -f $TMPDIR/$target/$subtarget/$image.html ] ; then + if [ -f $TMPDIR/targets/$target/$subtarget/$image.html ] ; then mkdir -p $BASE/lede/dbd/targets/$target/$subtarget mv $TMPDIR/targets/$target/$subtarget/$image.html $BASE/lede/dbd/targets/$target/$subtarget/$image.html echo " <tr><td><a href=\"dbd/targets/$target/$subtarget/$image.html\"><img src=\"/userContent/static/weather-showers-scattered.png\" alt=\"unreproducible icon\" /> $image</a> (${SIZE}) is unreproducible.</td></tr>" >> $DBD_HTML |