From 23c852125d2c543565a7ee6a3f52a4826559bfad Mon Sep 17 00:00:00 2001 From: decentral1se Date: Tue, 16 Mar 2021 10:13:15 +0100 Subject: [PATCH] Listen to shellcheck and do things --- abra | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/abra b/abra index 499e673..dc30c43 100755 --- a/abra +++ b/abra @@ -513,7 +513,7 @@ output_version_summary() { SERVICES=$($YQ e '.services | keys | .[]' "${APP_DIR}/${COMPOSE}") for SERVICE in $SERVICES; do - if [[ "${CHECKED_SERVICES[@]}" =~ "${SERVICE}" ]]; then + if [[ ${CHECKED_SERVICES[*]} =~ ${SERVICE} ]]; then debug "already inspected ${STACK_NAME}_${SERVICE} for versions, skipping..." continue fi