summaryrefslogtreecommitdiffstats
path: root/bin/reproducible_html_repository_comparison.sh
diff options
context:
space:
mode:
authorHolger Levsen <holger@layer-acht.org>2015-11-11 15:43:54 +0100
committerHolger Levsen <holger@layer-acht.org>2015-11-11 15:43:54 +0100
commit4111718032b2c030c8c959f4ece2b2b45449bb29 (patch)
tree2a8bfa9dde02df924ff82ef9ebbc634cded9c7f5 /bin/reproducible_html_repository_comparison.sh
parent86f7b10765fce50aceca96df3df09c816524d0ee (diff)
downloadjenkins.debian.net-4111718032b2c030c8c959f4ece2b2b45449bb29.tar.xz
reproducible: improve job output
Diffstat (limited to 'bin/reproducible_html_repository_comparison.sh')
-rwxr-xr-xbin/reproducible_html_repository_comparison.sh8
1 files changed, 4 insertions, 4 deletions
diff --git a/bin/reproducible_html_repository_comparison.sh b/bin/reproducible_html_repository_comparison.sh
index 055eb064..2de8ab04 100755
--- a/bin/reproducible_html_repository_comparison.sh
+++ b/bin/reproducible_html_repository_comparison.sh
@@ -30,10 +30,10 @@ write_row() {
}
custom_curl() {
- echo "$(date -u) - downloading $1 to $2"
+ echo -n "$(date -u) - downloading $1 to $2 - "
curl -s $1 > $2
local SIZE=$(ls -la $2 |cut -d " " -f5)
- echo "$(date -u) - downloaded $SIZE bytes."
+ echo "$SIZE bytes."
}
ARCH="amd64"
@@ -228,8 +228,8 @@ for PKG in $SOURCEPKGS ; do
write_row " <td>$CSID</td>"
write_row " <td>$CEXP</td>"
write_row "</tr>"
- echo "$(date -u ) - TABLE_TODO: $(ls -la $TABLE_TODO)"
- echo "$(date -u ) - TABLE_DONE: $(ls -la $TABLE_DONE)"
+ echo "TABLE_TODO: $(ls -la $TABLE_TODO|cut -d " " -f5) bytes"
+ echo "TABLE_DONE: $(ls -la $TABLE_DONE|cut -d " " -f5) bytes"
done
cat $TABLE_TODO >> $PAGE
write_page "</table></p>"