Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion justfile
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down