diff options
author | Erich Eckner <git@eckner.net> | 2020-04-25 13:53:22 +0200 |
---|---|---|
committer | Erich Eckner <git@eckner.net> | 2020-04-25 13:53:22 +0200 |
commit | eb80efa196a3cc144973671af4bbbc623179bdb0 (patch) | |
tree | b403882477f29a7c8f51a8efa96ebecde158c319 /bin/copy-to-build-support | |
parent | b9915b41fb08c30afa46331d104d86138c07c4aa (diff) | |
download | builder-eb80efa196a3cc144973671af4bbbc623179bdb0.tar.xz |
make shellcheck happy
Diffstat (limited to 'bin/copy-to-build-support')
-rwxr-xr-x | bin/copy-to-build-support | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/bin/copy-to-build-support b/bin/copy-to-build-support index e4850f0..82acc50 100755 --- a/bin/copy-to-build-support +++ b/bin/copy-to-build-support @@ -70,11 +70,14 @@ if [ ! -r "$1" ]; then fi exec 9> "${sanity_check_lock_file}" +# shellcheck disable=SC2086 verbose_flock -s ${wait_for_lock} 9 exec 8> "${package_database_lock_file}" +# shellcheck disable=SC2086 verbose_flock ${wait_for_lock} 8 +# shellcheck disable=SC2086 if intentions_left ${wait_for_lock}; then >&2 echo 'come back (shortly) later - There are still intentions in the queue.' exit 1 |