diff options
author | Holger Levsen <holger@layer-acht.org> | 2015-10-02 20:26:06 +0200 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-10-02 20:26:06 +0200 |
commit | 9cf52a56bad505f6f5a15ae41935f47a1ac0d8e3 (patch) | |
tree | 667512da1752343cedbe551faa010d82e5e1db60 /bin | |
parent | 0cd513f1ec32db1616ac034a73aa712df5f20423 (diff) | |
download | jenkins.debian.net-9cf52a56bad505f6f5a15ae41935f47a1ac0d8e3.tar.xz |
reproducible: fix typo
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/reproducible_build.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/reproducible_build.sh b/bin/reproducible_build.sh index 07bd0f98..b3855ac8 100755 --- a/bin/reproducible_build.sh +++ b/bin/reproducible_build.sh @@ -116,7 +116,7 @@ update_db_and_html() { [ "$OLD_STATUS" != "404" ] && [ "$STATUS" != "404" ]; then # spool notifications and mail them once a day mkdir -p /srv/reproducible-results/notification-emails - echo "$(date -u +'%Y-%m-%d %H:%M') $REPRODUCIBLE_URL/$SUITE/$ARCH/$SRCPACKAGE changed from $OLD_STATUS -> $STATUS" >> /srv/reproducible-results/notification-emails/$SRCPACKAG + echo "$(date -u +'%Y-%m-%d %H:%M') $REPRODUCIBLE_URL/$SUITE/$ARCH/$SRCPACKAGE changed from $OLD_STATUS -> $STATUS" >> /srv/reproducible-results/notification-emails/$SRCPACKAGE fi sqlite3 -init $INIT ${PACKAGES_DB} "REPLACE INTO results (package_id, version, status, build_date, build_duration, builder) VALUES ('$SRCPKGID', '$VERSION', '$STATUS', '$DATE', '$DURATION', '$BUILDER')" if [ ! -z "$DURATION" ] ; then # this happens when not 404 and not_for_us |