only enter loop if status is not deploying
This commit is contained in:
parent
e2942dd626
commit
d926bf938d
@ -175,7 +175,7 @@ if [[ $rollback == "true" || "$startstatus" == "STOPPED" ]]; then
|
|||||||
do
|
do
|
||||||
if [[ $count -lt 1 ]]; then
|
if [[ $count -lt 1 ]]; then
|
||||||
old_status=$(grep "^$app_name," temp.txt)
|
old_status=$(grep "^$app_name," temp.txt)
|
||||||
else
|
elif [[ $status != "DEPLOYING" ]]; then
|
||||||
before_loop=$(head -n 1 temp.txt)
|
before_loop=$(head -n 1 temp.txt)
|
||||||
new_status=$old_status
|
new_status=$old_status
|
||||||
current_loop=0
|
current_loop=0
|
||||||
|
Loading…
Reference in New Issue
Block a user