From 46fd7edb412325f9deed9095dad7aab9797b3aec Mon Sep 17 00:00:00 2001 From: Russell Bryant Date: Fri, 8 May 2026 11:48:59 -0400 Subject: [PATCH] fix(gateway): update Podman supervisor build task name The Podman path in the dev gateway script references the build:docker:supervisor-sideload mise task, which was removed in d8b84773 ("feat(rpm): add RPM packaging with Packit/COPR and GHA release publishing (#1126)"). That commit consolidated the sideload and standalone supervisor image builds into a single build:docker:supervisor task. Update the reference so `mise run gateway` works with the Podman compute driver. Signed-off-by: Russell Bryant --- tasks/scripts/gateway.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasks/scripts/gateway.sh b/tasks/scripts/gateway.sh index 608eabbf2..823ccb5f0 100644 --- a/tasks/scripts/gateway.sh +++ b/tasks/scripts/gateway.sh @@ -177,7 +177,7 @@ ensure_podman_supervisor_image() { echo "Building Podman supervisor sideload image (${supervisor_image})..." require_mise - CONTAINER_ENGINE=podman IMAGE_TAG=dev mise run build:docker:supervisor-sideload + CONTAINER_ENGINE=podman IMAGE_TAG=dev mise run build:docker:supervisor if ! podman image exists "${supervisor_image}" >/dev/null 2>&1; then echo "ERROR: expected supervisor image '${supervisor_image}' after build" >&2