diff options
author | Holger Levsen <holger@layer-acht.org> | 2016-12-24 13:17:53 +0100 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2016-12-24 13:17:53 +0100 |
commit | 180d47b5b04e51ac49f48fa42056080b008e5a78 (patch) | |
tree | d51a91145437258b882b08aa547015a49e0f0a8a | |
parent | 9ba5feaf043d50d3290512dbc5c2e838065f0b71 (diff) | |
download | jenkins.debian.net-180d47b5b04e51ac49f48fa42056080b008e5a78.tar.xz |
reproducible Debian: include the architecture in the artifact temp name
Signed-off-by: Holger Levsen <holger@layer-acht.org>
-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 92b73bf5..8b61773b 100755 --- a/bin/reproducible_build.sh +++ b/bin/reproducible_build.sh @@ -75,7 +75,7 @@ handle_race_condition() { save_artifacts() { local random=$(head /dev/urandom | tr -cd '[:alnum:]'| head -c5) - local ARTIFACTS="artifacts/r00t-me/${SRCPACKAGE}_${SUITE}_tmp-${random}" + local ARTIFACTS="artifacts/r00t-me/${SRCPACKAGE}_${SUITE}_${ARCH}_tmp-${random}" local URL="$DEBIAN_URL/$ARTIFACTS/" local HEADER="$DEBIAN_BASE/$ARTIFACTS/.HEADER.html" mkdir -p $DEBIAN_BASE/$ARTIFACTS |