__debian_backports: pass shellcheck for sourced file

Because the sourced explorer can't be detected by shellcheck, it will be
completely disabled. Changing the path to /etc/os-release isn't
deterministic either.

The shellcheck wiki page suggests to use `source=/dev/null` instead of
`disable=SC1090`, but it was choosen to completely avoid that check ..
This commit is contained in:
matze 2020-12-11 18:13:44 +01:00
parent a5169ad858
commit 0d96b31b56
1 changed files with 1 additions and 0 deletions

View File

@ -30,6 +30,7 @@ case "$os" in
# distribution codename from /etc/os-release
# lsb_release may not be given in all debian installations
dist="$(
# shellcheck disable=SC1090
. "$__global/explorer/os-release"
printf "%s" "$VERSION_CODENAME"
)"