diff options
author | Holger Levsen <holger@layer-acht.org> | 2015-08-30 18:02:08 +0200 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-08-30 18:02:08 +0200 |
commit | 9b409fff05e58cc0c83fe2250b30287fc0648fd6 (patch) | |
tree | b17c07ea5e938f58e61786914d8476e047025211 /bin | |
parent | 8823fa736a524a471a46e724f37d3e3866acd381 (diff) | |
download | jenkins.debian.net-9b409fff05e58cc0c83fe2250b30287fc0648fd6.tar.xz |
reproducible: fix typo and add domainname
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/reproducible_build.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/bin/reproducible_build.sh b/bin/reproducible_build.sh index 6f8671d4..7852bb4b 100755 --- a/bin/reproducible_build.sh +++ b/bin/reproducible_build.sh @@ -576,13 +576,13 @@ elif [ "$1" = "1" ] || [ "$1" = "2" ] ; then exit 0 elif [ "$2" != "" ] ; then MODE="ng" - NODE1="$1" - NODE2="$2" + NODE1="$1.debian.net" + NODE2="$2.debian.net" # overwrite ARCH for remote builds for i in $ARCHS ; do # try to match ARCH in nodenames if [[ "$NODE1" =~ .*-$i.* ]] ; then - ARCH=i + ARCH=$i fi done if [ -z "$ARCH" ] ; then |