Changed the output for failed commands.

This commit is contained in:
James Downie 2025-09-05 17:09:32 +10:00
parent bb0313bebc
commit 76a2b27f4b

View File

@ -62,6 +62,9 @@ EOF
kubectl apply -f "$url"
else
envsubst < "$f" | kubectl apply -f -
if [ $? -ne 0 ]; then
echo "🔴 $f"
fi
fi
fi
done