From eb80efa196a3cc144973671af4bbbc623179bdb0 Mon Sep 17 00:00:00 2001 From: Erich Eckner Date: Sat, 25 Apr 2020 13:53:22 +0200 Subject: make shellcheck happy --- bin/db-update | 3 +++ 1 file changed, 3 insertions(+) (limited to 'bin/db-update') diff --git a/bin/db-update b/bin/db-update index 401ef88..32de58a 100755 --- a/bin/db-update +++ b/bin/db-update @@ -168,17 +168,20 @@ fi if [ -z "${no_action_flag}" ]; then # Create lock. exec 9> "${package_database_lock_file}" + # shellcheck disable=SC2086 if ! verbose_flock ${block_flag} 9; then >&2 echo 'come back (shortly) later - I cannot lock package database.' exit 0 fi + # shellcheck disable=SC2086 if intentions_left ${block_flag}; then >&2 echo 'come back (shortly) later - There are still intentions in the queue.' exit 0 fi exec 8> "${sanity_check_lock_file}" + # shellcheck disable=SC2086 if ! verbose_flock -s ${block_flag} 8; then >&2 echo 'come back (shortly) later - sanity-check currently running.' exit 0 -- cgit v1.2.3