Remove `# shellcheck disable=SC2230` directives

This has been resolved from `.shellcheckrc`.
pull/144/head
Ben Peachey 2 years ago
parent 1f27333472
commit b2a2e0aa65
No known key found for this signature in database
GPG Key ID: C8E32F367B7AD50E

@ -6,7 +6,6 @@ if ! type -f bpkg-utils &>/dev/null; then
echo "error: bpkg-utils not found, aborting"
exit 1
else
# shellcheck disable=SC2230
# shellcheck source=lib/utils/utils.sh
source "$(which bpkg-utils)"
fi

@ -4,7 +4,6 @@ if ! type -f bpkg-utils &>/dev/null; then
echo "error: bpkg-utils not found, aborting"
exit 1
else
# shellcheck disable=SC2230
# shellcheck source=lib/utils/utils.sh
source "$(which bpkg-utils)"
fi
@ -22,7 +21,6 @@ if ! type -f bpkg-install &>/dev/null; then
echo "error: bpkg-install not found, aborting"
exit 1
else
# shellcheck disable=SC2230
# shellcheck source=lib/install/install.sh
source "$(which bpkg-install)"
fi
@ -31,7 +29,6 @@ if ! type -f bpkg-package &>/dev/null; then
echo "error: bpkg-package not found, aborting"
exit 1
else
# shellcheck disable=SC2230
# shellcheck source=lib/package/package.sh
source "$(which bpkg-package)"
fi

@ -6,7 +6,6 @@ if ! type -f bpkg-utils &>/dev/null; then
echo "error: bpkg-utils not found, aborting"
exit 1
else
# shellcheck disable=SC2230
# shellcheck source=lib/utils/utils.sh
source "$(which bpkg-utils)"
fi

@ -4,7 +4,6 @@ if ! type -f bpkg-run &>/dev/null; then
echo "error: bpkg-run not found, aborting"
exit 1
else
# shellcheck disable=SC2230
# shellcheck source=lib/run/run.sh
source "$(which bpkg-run)"
fi

@ -6,7 +6,6 @@ if ! type -f bpkg-utils &>/dev/null; then
echo "error: bpkg-utils not found, aborting"
exit 1
else
# shellcheck disable=SC2230
# shellcheck source=lib/utils/utils.sh
source "$(which bpkg-utils)"
fi
@ -81,4 +80,3 @@ if [[ ${BASH_SOURCE[0]} != "$0" ]]; then
elif bpkg_validate; then
bpkg_update "${@}"
fi

Loading…
Cancel
Save