From 4be857f64bf713cf52a8944fb2882aa5126f2c54 Mon Sep 17 00:00:00 2001 From: KiteEater <145987840+Kiteeater@users.noreply.github.com> Date: Mon, 20 Apr 2026 08:00:05 +0800 Subject: [PATCH] fix: use Apple Container image pull syntax (#2366) --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 5881e9f60..b21d860ae 100644 --- a/Makefile +++ b/Makefile @@ -99,7 +99,7 @@ setup-sandbox: echo ""; \ if command -v container >/dev/null 2>&1 && [ "$$(uname)" = "Darwin" ]; then \ echo "Detected Apple Container on macOS, pulling image..."; \ - container pull "$$IMAGE" || echo "⚠ Apple Container pull failed, will try Docker"; \ + container image pull "$$IMAGE" || echo "⚠ Apple Container pull failed, will try Docker"; \ fi; \ if command -v docker >/dev/null 2>&1; then \ echo "Pulling image using Docker..."; \