Skip to content

Commit 3187fa8

Browse files
authored
Merge pull request #24 from kingdonb/fix-build-detection-2
fix(slugbuilder): really fix buildpack detection
2 parents a01e637 + b4c53b6 commit 3187fa8

2 files changed

Lines changed: 10 additions & 10 deletions

File tree

rootfs/builder/build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ fi
123123
## Buildpack detection
124124

125125
# shellcheck disable=SC2206
126-
buildpacks=(${buildpack_root/*})
126+
buildpacks=(${buildpack_root}/*)
127127
selected_buildpack=
128128

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

rootfs/builder/install-buildpacks

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -29,14 +29,14 @@ download_buildpack() {
2929
mkdir -p $BUILDPACK_INSTALL_PATH
3030

3131
download_buildpack https://github.com/heroku/heroku-buildpack-multi.git v1.0.0 01-multi
32-
download_buildpack https://github.com/heroku/heroku-buildpack-clojure.git v85 02-clojure
33-
download_buildpack https://github.com/heroku/heroku-buildpack-go.git v140 03-go
34-
download_buildpack https://github.com/heroku/heroku-buildpack-gradle.git v31 04-gradle
32+
download_buildpack https://github.com/heroku/heroku-buildpack-clojure.git v86 02-clojure
33+
download_buildpack https://github.com/heroku/heroku-buildpack-go.git v149 03-go
34+
download_buildpack https://github.com/heroku/heroku-buildpack-gradle.git v33 04-gradle
3535
download_buildpack https://github.com/heroku/heroku-buildpack-grails.git v21 05-grails
36-
download_buildpack https://github.com/heroku/heroku-buildpack-java.git v66 06-java
37-
download_buildpack https://github.com/heroku/heroku-buildpack-nodejs.git v176 07-nodejs
38-
download_buildpack https://github.com/heroku/heroku-buildpack-php.git v181 08-php
36+
download_buildpack https://github.com/heroku/heroku-buildpack-java.git v68 06-java
37+
download_buildpack https://github.com/heroku/heroku-buildpack-nodejs.git v181 07-nodejs
38+
download_buildpack https://github.com/heroku/heroku-buildpack-php.git v187 08-php
3939
download_buildpack https://github.com/heroku/heroku-buildpack-play.git v26 09-play
40-
download_buildpack https://github.com/heroku/heroku-buildpack-python.git v181 10-python
41-
download_buildpack https://github.com/heroku/heroku-buildpack-ruby.git v218 11-ruby
42-
download_buildpack https://github.com/heroku/heroku-buildpack-scala.git v87 12-scala
40+
download_buildpack https://github.com/heroku/heroku-buildpack-python.git v187 10-python
41+
download_buildpack https://github.com/heroku/heroku-buildpack-ruby.git v222 11-ruby
42+
download_buildpack https://github.com/heroku/heroku-buildpack-scala.git v88 12-scala

0 commit comments

Comments
 (0)