index : builder | |
Archlinux32 build system | gitolite user |
summaryrefslogtreecommitdiff |
author | Erich Eckner <git@eckner.net> | 2018-05-25 09:07:39 +0200 |
---|---|---|
committer | Erich Eckner <git@eckner.net> | 2018-05-25 09:07:39 +0200 |
commit | 0be03e8056755deaaf1492fa1df38907eade690e (patch) | |
tree | ef9a485711a1b098c249c1494ffc3029cc8da728 /bin/seed-build-list | |
parent | ad863c02e7b0e7030a920a318fcb9a9963333eb3 (diff) |
-rwxr-xr-x | bin/seed-build-list | 4 |
diff --git a/bin/seed-build-list b/bin/seed-build-list index 923e65a..7540f14 100755 --- a/bin/seed-build-list +++ b/bin/seed-build-list @@ -115,13 +115,13 @@ fi # get locks if ${update}; then exec 9> "${sanity_check_lock_file}" - if ! flock -s ${wait_for_lock} 9; then + 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}" - if ! flock ${wait_for_lock} 8; then + if ! verbose_flock ${wait_for_lock} 8; then >&2 echo 'Cannot get build-list lock.' exit 1 fi |