diff options
author | Holger Levsen <holger@layer-acht.org> | 2015-06-11 15:33:07 +0200 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-06-11 15:33:07 +0200 |
commit | 6338888290dbdd781d8804b3dd95d4d225641b1f (patch) | |
tree | 08c2927f22bdd8a45ba2a48ccc42c6d1eafba93f /bin | |
parent | c458bfeb2c663ba9a84acf53a919f6b450fb5277 (diff) | |
download | jenkins.debian.net-6338888290dbdd781d8804b3dd95d4d225641b1f.tar.xz |
reproducible coreboot: fixup pathes
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/reproducible_coreboot.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/bin/reproducible_coreboot.sh b/bin/reproducible_coreboot.sh index 1e45da91..2e8d0f44 100755 --- a/bin/reproducible_coreboot.sh +++ b/bin/reproducible_coreboot.sh @@ -193,7 +193,6 @@ for i in * ; do done cd .. rm coreboot-builds -r -cd .. # run debbindiff on the results TIMEOUT="30m" @@ -208,7 +207,7 @@ BAD_ROMS=0 GOOD_ROMS=0 ALL_ROMS=0 create_results_dirs -cd b1 +cd $TMPDIR/b1 for i in * ; do let ALL_ROMS+=1 if [ -f $i/coreboot.rom ] ; then @@ -236,7 +235,8 @@ BAD_PERCENT=$(echo "scale=1 ; ($BAD_ROMS*100/$ALL_ROMS)" | bc) # # finally create the webpage # -PAGE=$PWD/coreboot/coreboot.html +cd $TMPDIR +PAGE=coreboot/coreboot.html cat > $PAGE <<- EOF <!DOCTYPE html> <html lang="en-US"> |