File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -15,10 +15,10 @@ function waiting_process {
1515 echo -e " \\ 033[32m---> Waiting $1 running.\\ 033[0m"
1616 for i in {0..4}; do
1717 pid=$( pgrep " $1 " )
18- if [ ! -n " $pid " ] && [[ $i == 3 ]]; then
18+ if [ -z " $pid " ] && [[ $i == 3 ]]; then
1919 echo -e " \\ 033[31m---> Process $1 failed.\\ 033[0m"
2020 exit 1
21- elif [ ! -n " $pid " ]; then
21+ elif [ -z " $pid " ]; then
2222 sleep 3
2323 else
2424 sleep 1
@@ -97,7 +97,7 @@ image_cache_repo="${registry}/${image_name}:latest"
9797 echo " ---> Cache not found"
9898}
9999# Building
100- export LIFECYCLE_IMAGE=docker.io/buildpacksio/lifecycle:8f801a5
100+ export LIFECYCLE_IMAGE=docker.io/buildpacksio/lifecycle:0.12.0-rc.1
101101if [[ " ${DRYCC_STACK} " == " container" ]] ; then
102102 echo " ---> Building container"
103103 podman build -t " ${image_cache_repo} " --network host .
You can’t perform that action at this time.
0 commit comments