From 791165b4157d9399fb061e493139b2ebbd759aa5 Mon Sep 17 00:00:00 2001 From: Pallav Vasa Date: Tue, 20 May 2025 08:47:11 +0000 Subject: [PATCH] fix: correct the build workspace command --- gitops_router.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gitops_router.sh b/gitops_router.sh index ff463d7..92ad33b 100644 --- a/gitops_router.sh +++ b/gitops_router.sh @@ -150,7 +150,7 @@ case "$cmd" in build) case "${args[0]}" in base) podman build --target base -t analytics-backend-base . ;; - workspace) podman build --target base -t analytics-backend-base . ;; + workspace) podman build --target workspace -t analytics-backend-workspace . ;; all) podman build -t analytics-backend-workspace . ;; *) log ERROR "build: invalid arg '${args[0]}'" ;; esac