Skip to content

Commit a01e637

Browse files
authored
Merge pull request #23 from n0n0x/fix-build-detection
fix(build.sh): Quotes on variable causes build detect to break
2 parents e9c7faf + e0a2ae9 commit a01e637

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

rootfs/builder/build.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,8 @@ fi
122122

123123
## Buildpack detection
124124

125-
buildpacks=("$buildpack_root/*")
125+
# shellcheck disable=SC2206
126+
buildpacks=(${buildpack_root/*})
126127
selected_buildpack=
127128

128129
if [[ -n "$BUILDPACK_URL" ]]; then

0 commit comments

Comments
 (0)