Skip to content

Commit

Permalink
Merge pull request #23 from n0n0x/fix-build-detection
Browse files Browse the repository at this point in the history
fix(build.sh): Quotes on variable causes build detect to break
  • Loading branch information
Cryptophobia authored Dec 11, 2020
2 parents e9c7faf + e0a2ae9 commit a01e637
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion rootfs/builder/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,8 @@ fi

## Buildpack detection

buildpacks=("$buildpack_root/*")
# shellcheck disable=SC2206
buildpacks=(${buildpack_root/*})
selected_buildpack=

if [[ -n "$BUILDPACK_URL" ]]; then
Expand Down

0 comments on commit a01e637

Please sign in to comment.