From 11f2dc15efaac287c0d1e2a3f91fd75d20abc3d9 Mon Sep 17 00:00:00 2001 From: continuist Date: Sun, 21 Sep 2025 14:05:10 -0400 Subject: [PATCH] fix syntax --- .forgejo/workflows/ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.forgejo/workflows/ci.yml b/.forgejo/workflows/ci.yml index 4fbdb41..f8602c8 100644 --- a/.forgejo/workflows/ci.yml +++ b/.forgejo/workflows/ci.yml @@ -201,16 +201,16 @@ jobs: run: | set -x echo "=== Force stopping all containers ===" - podman --remote ps -aq | xargs -r podman --remote stop --time 5 2>/dev/null || true + podman --remote ps -aq | xargs -r --no-run-if-empty podman --remote stop --time 5 2>/dev/null || true echo "=== Force removing all containers ===" - podman --remote ps -aq | xargs -r podman --remote rm -f 2>/dev/null || true + podman --remote ps -aq | xargs -r --no-run-if-empty podman --remote rm -f 2>/dev/null || true echo "=== Force stopping all pods ===" - podman --remote pod ps -q | xargs -r podman --remote pod stop --time 5 2>/dev/null || true + podman --remote pod ps -q | xargs -r --no-run-if-empty podman --remote pod stop --time 5 2>/dev/null || true echo "=== Force removing all pods ===" - podman --remote pod ps -q | xargs -r podman --remote pod rm -f 2>/dev/null || true + podman --remote pod ps -q | xargs -r --no-run-if-empty podman --remote pod rm -f 2>/dev/null || true - name: Disk preflight diagnostic run: |