From 3589e04177ac0ee6267ed9facf243809c989f2f0 Mon Sep 17 00:00:00 2001 From: earnest ma Date: Sat, 11 Sep 2021 22:01:07 -0400 Subject: [PATCH] fix: sourcing build file Weird? but works, and prevents shellcheck --- aptpkg | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/aptpkg b/aptpkg index 0125fe3..21fe3b3 100755 --- a/aptpkg +++ b/aptpkg @@ -103,7 +103,8 @@ load_build(){ mkdir -p dist # shellcheck disable=SC1090 - source "${1/build:?}" + # shellcheck disable=SC1091 + source "${1:?}/build" case "${type:?}" in deb)