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/seed-build-list | |
parent | b9915b41fb08c30afa46331d104d86138c07c4aa (diff) | |
download | builder-eb80efa196a3cc144973671af4bbbc623179bdb0.tar.xz |
make shellcheck happy
Diffstat (limited to 'bin/seed-build-list')
-rwxr-xr-x | bin/seed-build-list | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/bin/seed-build-list b/bin/seed-build-list index abeeac3..5adf46e 100755 --- a/bin/seed-build-list +++ b/bin/seed-build-list @@ -170,12 +170,14 @@ fi # get locks if ${update}; then exec 9> "${sanity_check_lock_file}" + # shellcheck disable=SC2086 if ! verbose_flock -s ${wait_for_lock} 9; then >&2 echo 'Cannot get sanity-check lock.' exit 1 fi exec 8> "${build_list_lock_file}" + # shellcheck disable=SC2086 if ! verbose_flock ${wait_for_lock} 8; then >&2 echo 'Cannot get build-list lock.' exit 1 |