[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.
This commit is contained in:
Frans de Jonge
2022-01-11 12:39:21 +01:00
committed by GitHub
parent 99171b5267
commit be6e9f4fe8

View File

@@ -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