File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ if [[ "${php_version}" == "${remote_php_version}" ]] ; then
2929 echo " ---> Reusing php"
3030else
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"
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ if [[ "${python_version}" == "${remote_python_version}" ]] ; then
2222 echo " ---> Reusing python"
2323else
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
2828cache = true
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ if [[ "${ruby_version}" == "${remote_ruby_version}" ]] ; then
2424 echo " ---> Reusing ruby"
2525else
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
3030cache = true
You can’t perform that action at this time.
0 commit comments