diff options
author | Holger Levsen <holger@layer-acht.org> | 2017-11-22 16:28:48 +0000 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2017-11-22 16:28:48 +0000 |
commit | 5978e7592fe7cebabb5ca48b22a536509d6fd531 (patch) | |
tree | c440152b93ad246527ea877ff31380caf9245835 | |
parent | fc755141e68de63e7b8d784b3443d29c537607a7 (diff) | |
download | jenkins.debian.net-5978e7592fe7cebabb5ca48b22a536509d6fd531.tar.xz |
reproducible Arch Linux: fix typo in comment
Signed-off-by: Holger Levsen <holger@layer-acht.org>
-rwxr-xr-x | bin/reproducible_build_archlinux_pkg.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/reproducible_build_archlinux_pkg.sh b/bin/reproducible_build_archlinux_pkg.sh index b44443d4..0e35bf3b 100755 --- a/bin/reproducible_build_archlinux_pkg.sh +++ b/bin/reproducible_build_archlinux_pkg.sh @@ -330,7 +330,7 @@ mkdir b1 b2 # currently there are two Arch Linux build nodes… let's keep things simple N1="profitbricks-build3-amd64" N2="profitbricks-build4-amd64" -# if random number between 0 and 1 is greater than 1… +# if random number between 0 and 1 is greater than 0… if [ $(( ( $RANDOM % 2 ) )) -gt 0 ] ; then NODE1=$N1 NODE2=$N2 |