From 0270cd966bf200013f88ac5f99305850e6d7e4a5 Mon Sep 17 00:00:00 2001 From: yeti Date: Thu, 24 Apr 2025 20:50:29 +0100 Subject: [PATCH] fix(buildah): use dev_home variable instead of hard coded path --- build-workspace.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-workspace.sh b/build-workspace.sh index e983398..440bb78 100755 --- a/build-workspace.sh +++ b/build-workspace.sh @@ -64,7 +64,7 @@ buildah config \ --user $DEV_USER \ --workingdir /app \ --env CONTAINER_HOST=unix:///run/podman/podman.sock \ - --cmd '["/home/devuser/start.sh"]' \ + --cmd "[\"$DEV_HOME/start.sh\"]" \ "$ctr" buildah commit "$ctr" $IMG_NAME