Skip to content

Commit 0aff652

Browse files
author
lijianguo
committed
chore(pack-images): delete buildpacks url scheme
1 parent eb3ac26 commit 0aff652

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

buildpacks/php/bin/build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ if [[ "${php_version}" == "${remote_php_version}" ]] ; then
2929
echo "---> Reusing php"
3030
else
3131
echo "---> Downloading and extracting php ${php_version} ${arch}"
32-
php_url="https://buildpacks.drycc.cc/php/${CNB_STACK_ID}/php-${php_version}-${arch}.tar.gz"
32+
php_url="buildpacks.drycc.cc/php/${CNB_STACK_ID}/php-${php_version}-${arch}.tar.gz"
3333
wget -q -O - "${php_url}" | tar -xzf - -C "${php_layer_dir}"
3434
rm -f "php-${php_version}-${arch}.tar.gz"
3535
cp "${php_layer_dir}/sbin/php-fpm" "${php_layer_dir}/bin"

buildpacks/python/bin/build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ if [[ "${python_version}" == "${remote_python_version}" ]] ; then
2222
echo "---> Reusing python"
2323
else
2424
echo "---> Downloading and extracting Python ${python_version}"
25-
python_url="https://buildpacks.drycc.cc/python/${CNB_STACK_ID}/python-${python_version}-${arch}.tar.gz"
25+
python_url="buildpacks.drycc.cc/python/${CNB_STACK_ID}/python-${python_version}-${arch}.tar.gz"
2626
wget -q -O - "${python_url}" | tar -xzf - -C "${python_layer_dir}"
2727
cat > "${python_layer_dir}.toml" <<EOL
2828
cache = true

buildpacks/ruby/bin/build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ if [[ "${ruby_version}" == "${remote_ruby_version}" ]] ; then
2424
echo "---> Reusing ruby"
2525
else
2626
echo "---> Downloading and extracting Ruby ${ruby_version}"
27-
ruby_url="https://buildpacks.drycc.cc/ruby/${CNB_STACK_ID}/ruby-${ruby_version}-${arch}.tar.gz"
27+
ruby_url="buildpacks.drycc.cc/ruby/${CNB_STACK_ID}/ruby-${ruby_version}-${arch}.tar.gz"
2828
wget -q -O - "${ruby_url}" | tar -xzf - -C "${ruby_layer_dir}"
2929
cat > "${ruby_layer_dir}.toml" <<EOL
3030
cache = true

0 commit comments

Comments
 (0)