From 714db009905883c671b3551dcb570432987a3eee Mon Sep 17 00:00:00 2001 From: Zoheb Shaikh <26975142+ZohebShaikh@users.noreply.github.com> Date: Fri, 28 Aug 2026 15:50:15 +0000 Subject: [PATCH] fix: prevent RUNNER detection failure Append `|| true` so the justfile can still be parsed/used on systems without a container runtime like docker or podman, instead of erroring out at command substitution time. --- justfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/justfile b/justfile index e4c314af3..396e694d0 100644 --- a/justfile +++ b/justfile @@ -1,5 +1,5 @@ SESSION := "cm12345-1" -RUNNER := `command -v docker || command -v podman` +RUNNER := `command -v docker || command -v podman || true` default: compose serve