From 73279295e7112249832e48df679eb88707216193 Mon Sep 17 00:00:00 2001 From: MarcoIeni <11428655+MarcoIeni@users.noreply.github.com> Date: Fri, 21 Aug 2026 19:59:23 +0200 Subject: [PATCH] fix upgrade recipe --- justfile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/justfile b/justfile index 5813ce9..3e85652 100644 --- a/justfile +++ b/justfile @@ -48,7 +48,10 @@ upgrade: limactl shell "{{ vm }}" sudo apt-get update limactl shell "{{ vm }}" sudo apt-get upgrade limactl shell "{{ vm }}" bash -lc 'brew update && brew upgrade --yes' - limactl shell "{{ vm }}" bash -lc 'curl -fsSL https://chatgpt.com/codex/install.sh | sh' + limactl shell "{{ vm }}" bash -lc 'curl -fsSL https://chatgpt.com/codex/install.sh | CODEX_NON_INTERACTIVE=1 sh' + # stop the old running app-server and start it again using the newly installed binary. + limactl shell "{{ vm }}" bash -lc \ + 'pkill -x codex || true; exec codex app-server daemon bootstrap' rebuild: delete create