diff --git a/lib/list/list.sh b/lib/list/list.sh index 2f6eb48..45cd2f3 100755 --- a/lib/list/list.sh +++ b/lib/list/list.sh @@ -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 diff --git a/lib/run/run.sh b/lib/run/run.sh index da13dab..07813c1 100755 --- a/lib/run/run.sh +++ b/lib/run/run.sh @@ -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 diff --git a/lib/show/show.sh b/lib/show/show.sh index a998ce6..095c277 100755 --- a/lib/show/show.sh +++ b/lib/show/show.sh @@ -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 diff --git a/lib/source/source.sh b/lib/source/source.sh index 4c2116e..86eebb2 100755 --- a/lib/source/source.sh +++ b/lib/source/source.sh @@ -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 diff --git a/lib/update/update.sh b/lib/update/update.sh index 2702150..8644afe 100755 --- a/lib/update/update.sh +++ b/lib/update/update.sh @@ -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 -