BuildpackWithoutStack makes a simple buildpack without a stack (using MakeBuildpackArchive) and yields it to the given function, removing the zip at the end.
(f func(buildpackArchive string))
| 51 | // MakeBuildpackArchive) and yields it to the given function, removing the zip |
| 52 | // at the end. |
| 53 | func BuildpackWithoutStack(f func(buildpackArchive string)) { |
| 54 | BuildpackWithStack(f, "") |
| 55 | } |
| 56 | |
| 57 | // SetupBuildpackWithStack makes and uploads a buildpack for the given stack. |
| 58 | func SetupBuildpackWithStack(buildpackName, stack string) { |
no test coverage detected