From be6e9f4fe8e020c7a3a188737b54a91dc7f48b8a Mon Sep 17 00:00:00 2001 From: Frans de Jonge Date: Tue, 11 Jan 2022 12:39:21 +0100 Subject: [PATCH] [CI] Minor shellcheck cleanup (#8618) `# shellcheck disable=SC2039,SC3040` is only if you want it to pass multiple versions, but I figure there's not much reason to keep the old exception for <=0.7.1 in there. --- platform/common/spinning_zsync | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/platform/common/spinning_zsync b/platform/common/spinning_zsync index 0ddbe3059..99dba42bc 100755 --- a/platform/common/spinning_zsync +++ b/platform/common/spinning_zsync @@ -8,7 +8,7 @@ # NOTE: We inherit WITH_PIPEFAIL from the env via OTAManager, because of course old busybox ash versions abort on set -o failures... # c.f., https://github.com/koreader/koreader/pull/5844 if [ "${WITH_PIPEFAIL}" = "true" ]; then - # shellcheck disable=SC2039,SC3040 + # shellcheck disable=SC3040 set -o pipefail fi