From d4a7ea90722f8b8ef3f248482c4a64d9eca4bbd2 Mon Sep 17 00:00:00 2001 From: Zxilly Date: Sun, 15 Dec 2024 20:52:28 +0800 Subject: [PATCH] ci: fix ipv6 check --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1053c1f..f202265 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -119,7 +119,7 @@ jobs: sudo sysctl net.ipv6.conf.default.disable_ipv6 sudo sysctl net.ipv6.conf.lo.disable_ipv6 - ping6 -c 4 ::1 || echo "::1 is not reachable" && exit 1 + ping6 -c 4 ::1 || { echo "::1 is not reachable"; exit 1; } - name: Run unit tests run: |