File tree 4 files changed +8
-4
lines changed
4 files changed +8
-4
lines changed Original file line number Diff line number Diff line change
1
+ {
2
+ "jam" : " v0.7.0" ,
3
+ "pack" : " v0.17.0"
4
+ }
Original file line number Diff line number Diff line change @@ -50,7 +50,7 @@ function util::tools::jam::install () {
50
50
51
51
if [[ ! -f " ${dir} /jam" ]]; then
52
52
local version
53
- version=" v0.4.2 "
53
+ version=" $( jq -r .jam " $( dirname " ${BASH_SOURCE[0]} " ) /tools.json " ) "
54
54
55
55
util::print::title " Installing jam ${version} "
56
56
curl " https://github.com/paketo-buildpacks/packit/releases/download/${version} /jam-${os} " \
@@ -95,7 +95,7 @@ function util::tools::pack::install() {
95
95
96
96
if [[ ! -f " ${dir} /pack" ]]; then
97
97
local version
98
- version=" v0.15.0 "
98
+ version=" $( jq -r .pack " $( dirname " ${BASH_SOURCE[0]} " ) /tools.json " ) "
99
99
100
100
util::print::title " Installing pack ${version} "
101
101
curl " https://github.com/buildpacks/pack/releases/download/${version} /pack-${version} -${os} .tgz" \
Original file line number Diff line number Diff line change @@ -74,7 +74,7 @@ function images::pull() {
74
74
docker pull " ${builder} "
75
75
76
76
util::print::title " Setting default pack builder image..."
77
- pack set- default-builder " ${builder} "
77
+ pack config default-builder " ${builder} "
78
78
79
79
local run_image lifecycle_image
80
80
run_image=" $(
Original file line number Diff line number Diff line change @@ -109,7 +109,7 @@ function buildpackage::create() {
109
109
util::print::title " Packaging buildpack..."
110
110
111
111
pack \
112
- package- buildpack " ${output} " \
112
+ buildpack package " ${output} " \
113
113
--config " ${ROOT_DIR} /package.toml" \
114
114
--format file
115
115
}
You can’t perform that action at this time.
0 commit comments