diff options
author | Holger Levsen <holger@layer-acht.org> | 2015-04-18 19:16:52 +0200 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-04-18 19:16:52 +0200 |
commit | 97b2376ef7d959b2355ab0b5feba0efa42be25f7 (patch) | |
tree | 6dbed83cf5c7f0c0d1a9c5407005fa7220f60fb9 | |
parent | f9490ee6daf9a7b7300cd4776bac93be7dbca339 (diff) | |
download | jenkins.debian.net-97b2376ef7d959b2355ab0b5feba0efa42be25f7.tar.xz |
reproducible: fix typos
-rwxr-xr-x | bin/reproducible_build.sh | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/bin/reproducible_build.sh b/bin/reproducible_build.sh index 50da8520..9f5ae6b6 100755 --- a/bin/reproducible_build.sh +++ b/bin/reproducible_build.sh @@ -131,7 +131,7 @@ print_out_duration() { handle_404() { echo "Warning: Download of ${SRCPACKAGE} sources from ${SUITE} failed." | tee -a ${RBUILDLOG} ls -l ${SRCPACKAGE}* | tee -a ${RBUILDLOG} - echo "Warning: Maybe there was a network problem, or ${SRCPACKAGE} is not a source package in ${SUITE}, ora it was removed or renamed. Please investigate." | tee -a ${RBUILDLOG} + echo "Warning: Maybe there was a network problem, or ${SRCPACKAGE} is not a source package in ${SUITE}, or it was removed or renamed. Please investigate." | tee -a ${RBUILDLOG} DURATION='' update_db_and_html "404" if [ $SAVE_ARTIFACTS -eq 1 ] ; then SAVE_ARTIFACTS=2 ; fi @@ -233,7 +233,7 @@ call_debbindiff() { init_debbindiff # check and set up locks for chroot local TMPLOG=(mktemp --tmpdir=$TMPDIR) echo | tee -a ${RBUILDLOG} - local TIMEOUT="30m" # don't forget to also change the "seq 0 200" loop 17 lines above + local TIMEOUT="30m" # don't forget to also change the "seq 0 200" loop 33 lines above DBDVERSION="$(schroot --directory /tmp -c source:jenkins-reproducible-unstable-debbindiff debbindiff -- --version 2>&1)" echo "$(date) - $DBDVERSION will be used to compare the two builds now." | tee -a ${RBUILDLOG} set -x @@ -406,7 +406,7 @@ build_rebuild() { # -# below there is what controls the world +# below is what controls the world # TMPDIR=$(mktemp --tmpdir=/srv/reproducible-results -d) # where everything actually happens @@ -419,7 +419,7 @@ RBUILDLOG=$(mktemp --tmpdir=$TMPDIR) choose_package # defines SUITE, PKGID, SRCPACKAGE, SCHEDULED_DATE, SAVE_ARTIFACTS -# used to catch race conditions where the same package is being built by two parallel jobs +# used to catch race conditions when the same package is being built by two parallel jobs LOCKFILE="/tmp/${SUITE}-${ARCH}-${SRCPACKAGE}" init |