diff --git a/functions/update/commander.sh b/functions/update/commander.sh index 8604e980..905ccbde 100644 --- a/functions/update/commander.sh +++ b/functions/update/commander.sh @@ -83,10 +83,8 @@ get_apps_with_status() { # Call the existing function and process its output while IFS=, read -r app_name status; do - # If the status is "stopAll-on" or "operator", append the app_name and status to the apps_with_status array - if [[ "$status" == "stopAll-on" ]] || [[ "$status" == "operator" ]] || [[ "$status" == "cnpg" ]]; then - apps_with_status+=("$app_name,$status") - fi + # Append the app_name and status to the apps_with_status array + apps_with_status+=("$app_name,$status") done < <(check_filtered_apps "${array[@]/,*}") }