diff options
| author | Paul Buetow <paul@buetow.org> | 2025-11-03 13:45:50 +0200 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2025-11-03 13:45:50 +0200 |
| commit | 8667f506fcdd5f87f2a880fe9d0546361223288e (patch) | |
| tree | be6ed74cdf83efcd4c225535aceab048ef28ce80 | |
| parent | b99799ce2d65c16ecdcea22320dba914d8c54e77 (diff) | |
Update
| -rw-r--r-- | dotfiles/fish/conf.d/update.fish | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/dotfiles/fish/conf.d/update.fish b/dotfiles/fish/conf.d/update.fish index 8a965e3..6132e39 100644 --- a/dotfiles/fish/conf.d/update.fish +++ b/dotfiles/fish/conf.d/update.fish @@ -31,10 +31,14 @@ function update::tools if test (uname) = Darwin echo 'Updating cursor-agent on macOS' - cursor-agent update + cursor-agent update & end set -a pids $last_pid + echo 'Updating claude' + claude update & + set -a pids $last_pid + if test (uname) = Linux echo "Installing/updating tgpt" go install github.com/aandrew-me/tgpt/v2@latest & @@ -48,9 +52,9 @@ function update::tools # doas npm uninstall -g @qwen-code/qwen-code@latest # doas npm install -g @qwen-code/qwen-code@latest - echo "Installing/updating @anthropic-ai/claude-code globally via npm" - doas npm uninstall -g @anthropic-ai/claude-code - doas npm install -g @anthropic-ai/claude-code + # echo "Installing/updating @anthropic-ai/claude-code globally via npm" + # doas npm uninstall -g @anthropic-ai/claude-code + # doas npm install -g @anthropic-ai/claude-code echo "Installing/updating @openai/codex globally via npm" doas npm uninstall -g @openai/codex |
