diff options
author | Holger Levsen <holger@layer-acht.org> | 2014-10-16 00:33:31 +0200 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2014-10-16 01:59:29 +0200 |
commit | 6779accc6724836e09dcca82ce2ebfef8a0cc17a (patch) | |
tree | 45fb6951da0ad4c8c2ab24fb1f0f9114f6e75c3b /bin | |
parent | a1831441aa1e8ce198f66acf4d8051d926581848 (diff) | |
download | jenkins.debian.net-6779accc6724836e09dcca82ce2ebfef8a0cc17a.tar.xz |
reproducible: deal with GnuPG/MacGPG2 being used to sign the mueller source package...
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 fb45b144..dc9c61ac 100755 --- a/bin/reproducible_build.sh +++ b/bin/reproducible_build.sh @@ -62,7 +62,7 @@ else exit 0 else set -e - VERSION=$(grep "^Version: " ${SRCPACKAGE}_*.dsc| grep -v "GnuPG v" | sort -r | head -1 | cut -d " " -f2-) + VERSION=$(grep "^Version: " ${SRCPACKAGE}_*.dsc| egrep -v '(GnuPG v|GnuPG/MacGPG2)' | cut -d " " -f2-) # EPOCH_FREE_VERSION was too long EVERSION=$(echo $VERSION | cut -d ":" -f2) # preserve RBUILDLOG as TMPLOG, then cleanup userContent from previous builds, |