diff options
author | Holger Levsen <holger@layer-acht.org> | 2015-08-31 13:59:40 +0200 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-08-31 13:59:40 +0200 |
commit | f3593aa77100824960eee4b880dbcdd96832ba18 (patch) | |
tree | 2933fb45c101e2ad3ccc026b14776af8995ce137 /bin | |
parent | d6005726ee863c6160eda6db8e8327ae26ac01f8 (diff) | |
download | jenkins.debian.net-f3593aa77100824960eee4b880dbcdd96832ba18.tar.xz |
reproducible: fix syntax error
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/reproducible_build.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/reproducible_build.sh b/bin/reproducible_build.sh index 598aaba6..9326a5c5 100755 --- a/bin/reproducible_build.sh +++ b/bin/reproducible_build.sh @@ -606,8 +606,8 @@ elif [ "$2" != "" ] ; then PORT1="$(echo $1 | cut -d ':' -f2)" PORT2="$(echo $2 | cut -d ':' -f2)" # if no port is given, assume 22 - if [ "$NODE1" = "${PORT1}.debian.net" ] ; then PORT1 = 22 ; fi - if [ "$NODE2" = "${PORT2}.debian.net" ] ; then PORT2 = 22 ; fi + if [ "$NODE1" = "${PORT1}.debian.net" ] ; then PORT1= 22 ; fi + if [ "$NODE2" = "${PORT2}.debian.net" ] ; then PORT2= 22 ; fi # overwrite ARCH for remote builds for i in $ARCHS ; do # try to match ARCH in nodenames |