From 754e59ecbd362d20426043ac08130e1ae9f1d0f5 Mon Sep 17 00:00:00 2001 From: Andy Bunce Date: Tue, 17 Mar 2026 15:42:16 +0000 Subject: [PATCH] fix: pushd --- docker-images/Dockerfile.agent | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker-images/Dockerfile.agent b/docker-images/Dockerfile.agent index 8ce421e..5ec3b29 100644 --- a/docker-images/Dockerfile.agent +++ b/docker-images/Dockerfile.agent @@ -31,7 +31,7 @@ RUN curl -fsSL https://bun.sh/install | bash RUN ( \ cd /usr/local/bin && \ echo '#!/bin/sh' %3E npx && echo 'exec bunx "$@"' >> npx && chmod +x npx && \ - echo '#!/bin/sh' %3E node && echo 'exec bun "$@"' >> node && chmod +x node && \ + echo '#!/bin/sh' %3E node && echo 'exec bun "$@"' >> node && chmod +x node \ )