Skip to content
This repository has been archived by the owner on Jan 28, 2022. It is now read-only.

Commit

Permalink
Fix buildpack version source + bump to v0.12.0
Browse files Browse the repository at this point in the history
  • Loading branch information
sclevine committed Jun 7, 2017
1 parent d99e055 commit 6aaa791
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.11.0
0.12.0
16 changes: 8 additions & 8 deletions local/buildpacks.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ var Buildpacks BuildpackList = []Buildpack{
{
Name: "staticfile_buildpack",
URL: "https://github.com/cloudfoundry/staticfile-buildpack/releases/download/v{{.}}/staticfile-buildpack-v{{.}}.zip",
VersionURL: "https://raw.githubusercontent.com/cloudfoundry/staticfile-buildpack/master/VERSION",
VersionURL: "https://raw.githubusercontent.com/sclevine/cflocal-data/master/versions/staticfile-buildpack",
},
{
Name: "java_buildpack",
Expand All @@ -20,36 +20,36 @@ var Buildpacks BuildpackList = []Buildpack{
{
Name: "ruby_buildpack",
URL: "https://github.com/cloudfoundry/ruby-buildpack/releases/download/v{{.}}/ruby-buildpack-v{{.}}.zip",
VersionURL: "https://raw.githubusercontent.com/cloudfoundry/ruby-buildpack/master/VERSION",
VersionURL: "https://raw.githubusercontent.com/sclevine/cflocal-data/master/versions/ruby-buildpack",
},
{
Name: "nodejs_buildpack",
URL: "https://github.com/cloudfoundry/nodejs-buildpack/releases/download/v{{.}}/nodejs-buildpack-v{{.}}.zip",
VersionURL: "https://raw.githubusercontent.com/cloudfoundry/nodejs-buildpack/master/VERSION",
VersionURL: "https://raw.githubusercontent.com/sclevine/cflocal-data/master/versions/nodejs-buildpack",
},
{
Name: "go_buildpack",
URL: "https://github.com/cloudfoundry/go-buildpack/releases/download/v{{.}}/go-buildpack-v{{.}}.zip",
VersionURL: "https://raw.githubusercontent.com/cloudfoundry/go-buildpack/master/VERSION",
VersionURL: "https://raw.githubusercontent.com/sclevine/cflocal-data/master/versions/go-buildpack",
},
{
Name: "python_buildpack",
URL: "https://github.com/cloudfoundry/python-buildpack/releases/download/v{{.}}/python-buildpack-v{{.}}.zip",
VersionURL: "https://raw.githubusercontent.com/cloudfoundry/python-buildpack/master/VERSION",
VersionURL: "https://raw.githubusercontent.com/sclevine/cflocal-data/master/versions/python-buildpack",
},
{
Name: "php_buildpack",
URL: "https://github.com/cloudfoundry/php-buildpack/releases/download/v{{.}}/php-buildpack-v{{.}}.zip",
VersionURL: "https://raw.githubusercontent.com/cloudfoundry/php-buildpack/master/VERSION",
VersionURL: "https://raw.githubusercontent.com/sclevine/cflocal-data/master/versions/php-buildpack",
},
{
Name: "dotnet_core_buildpack",
URL: "https://github.com/cloudfoundry/dotnet-core-buildpack/releases/download/v{{.}}/dotnet-core-buildpack-v{{.}}.zip",
VersionURL: "https://raw.githubusercontent.com/cloudfoundry/dotnet-core-buildpack/master/VERSION",
VersionURL: "https://raw.githubusercontent.com/sclevine/cflocal-data/master/versions/dotnet-core-buildpack",
},
{
Name: "binary_buildpack",
URL: "https://github.com/cloudfoundry/binary-buildpack/releases/download/v{{.}}/binary-buildpack-v{{.}}.zip",
VersionURL: "https://raw.githubusercontent.com/cloudfoundry/binary-buildpack/master/VERSION",
VersionURL: "https://raw.githubusercontent.com/sclevine/cflocal-data/master/versions/binary-buildpack",
},
}

0 comments on commit 6aaa791

Please sign in to comment.