From e0a2ae983a7b7735312236dd8a404fc80ac16cb8 Mon Sep 17 00:00:00 2001 From: n0n0x Date: Thu, 10 Dec 2020 11:29:01 +0100 Subject: [PATCH] fix(build.sh): Quotes on variable causes build detect to break --- rootfs/builder/build.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/rootfs/builder/build.sh b/rootfs/builder/build.sh index 9beadb2..ccb8bf1 100755 --- a/rootfs/builder/build.sh +++ b/rootfs/builder/build.sh @@ -122,7 +122,8 @@ fi ## Buildpack detection -buildpacks=("$buildpack_root/*") +# shellcheck disable=SC2206 +buildpacks=(${buildpack_root/*}) selected_buildpack= if [[ -n "$BUILDPACK_URL" ]]; then