index : builder | |
Archlinux32 build system | gitolite user |
summaryrefslogtreecommitdiff |
author | Erich Eckner <git@eckner.net> | 2020-01-31 09:34:56 +0100 |
---|---|---|
committer | Erich Eckner <git@eckner.net> | 2020-01-31 09:44:57 +0100 |
commit | b2554880deb779f50aa82e73b247edf3a63b8837 (patch) | |
tree | 05003f4f29c58d03e92af987444f9280291e78ce /bin/copy-to-build-support | |
parent | 8048b29f90d956a295349d03ab91dcbd23106d34 (diff) |
-rwxr-xr-x | bin/copy-to-build-support | 13 |
diff --git a/bin/copy-to-build-support b/bin/copy-to-build-support index bb7e421..0dcc298 100755 --- a/bin/copy-to-build-support +++ b/bin/copy-to-build-support @@ -77,16 +77,9 @@ verbose_flock -s ${wait_for_lock} 9 exec 8> "${package_database_lock_file}" verbose_flock ${wait_for_lock} 8 -if [ -z "${wait_for_lock}" ]; then - while intentions_left; do - >&2 echo 'There are still intentions in the queue.' - sleep 1 - done -else - if intentions_left; then - >&2 echo 'come back (shortly) later - There are still intentions in the queue.' - exit 1 - fi +if intentions_left ${wait_for_lock}; then + >&2 echo 'come back (shortly) later - There are still intentions in the queue.' + exit 1 fi tmp_dir=$(mktemp -d "${work_dir}/tmp.copy-to-build-support.0.XXXXXXXXXX") |