diff options
author | Holger Levsen <holger@layer-acht.org> | 2015-04-30 16:35:01 +0200 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-04-30 16:35:01 +0200 |
commit | 3a67b3576bca9f89550db06cec72405837aeae17 (patch) | |
tree | 203e1feed8bbd0979b59dd875276f771ad053f6d | |
parent | 179409625406941e7129645ec26312edf794125e (diff) | |
download | jenkins.debian.net-3a67b3576bca9f89550db06cec72405837aeae17.tar.xz |
fix typo
-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 e6e45579..0295c6f2 100755 --- a/bin/reproducible_build.sh +++ b/bin/reproducible_build.sh @@ -36,13 +36,13 @@ handle_race_condition() { local msg="${msg}Please check $BUILD_URL and https://reproducible.debian.net/$SUITE/$ARCH/${SRCPACKAGE} for a different build.\n" case $1 in "db") - local msg="${msg}The race condition was cought while marking the build attempt in the database.\n" + local msg="${msg}The race condition was caught while marking the build attempt in the database.\n" ;; "init") - local msg="${msg}The race condition was cought while writing the lockfile.\n" + local msg="${msg}The race condition was caught while writing the lockfile.\n" ;; "lockfile") - local msg="${msg}The race condition was cought while checking the lockfile for pid correctness.\n" + local msg="${msg}The race condition was caught while checking the lockfile for pid correctness.\n" ;; esac printf "$msg" | tee -a $BUILDLOG |