diff options
author | Holger Levsen <holger@layer-acht.org> | 2016-11-01 13:26:39 +0100 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2016-11-01 13:26:39 +0100 |
commit | ee5f529596c86d86999d6a0b69166654568be587 (patch) | |
tree | c4e33097f900eb30230e322153f907a681cf9909 | |
parent | bc75bbc7b11a8072d97a1f0e973ac564390a8ea9 (diff) | |
download | jenkins.debian.net-ee5f529596c86d86999d6a0b69166654568be587.tar.xz |
reproducible Debian: don't fail a build job just because we cannot sign it
-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 57178b76..9fd1299e 100755 --- a/bin/reproducible_build.sh +++ b/bin/reproducible_build.sh @@ -775,7 +775,7 @@ check_buildinfo() { sign_buildinfo() { log_info "Signing $BUILDINFO as $BUILDINFO_SIGNED" - gpg --output=$BUILDINFO_SIGNED --clearsign $BUILDINFO + gpg --output=$BUILDINFO_SIGNED --clearsign $BUILDINFO || log_error "Could not sign $BUILDINFO" log_info "Signed $BUILDINFO as $BUILDINFO_SIGNED" } |