diff options
| author | Paul Buetow <paul@buetow.org> | 2025-06-28 09:50:52 +0300 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2025-06-28 09:50:52 +0300 |
| commit | 1a5795ce59630d2d0be0d34b6ff291f66c542fc4 (patch) | |
| tree | dccf04a57f46dfc7d698168f12028af3f15399b6 | |
| parent | 774cbc9e1a84228ccbcf15c8f982bab1b8a38a01 (diff) | |
Update
| -rw-r--r-- | dotfiles/fish/conf.d/update.fish | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/dotfiles/fish/conf.d/update.fish b/dotfiles/fish/conf.d/update.fish index 6f0f7a3..beb1ae8 100644 --- a/dotfiles/fish/conf.d/update.fish +++ b/dotfiles/fish/conf.d/update.fish @@ -4,10 +4,16 @@ function update::tools go install codeberg.org/snonux/tasksamurai/cmd/tasksamurai@latest if [ "$(uname)" = Linux ] then + echo "Installing gos from codeberg.org/snonux/gos/cmd/gos@latest" go install codeberg.org/snonux/gos/cmd/gos@latest + echo "Installing gitsyncer from codeberg.org/snonux/gitsyncer/cmd/gitsyncer@latest" go install codeberg.org/snonux/gitsyncer/cmd/gitsyncer@latest - doas npm i -g @anthropic-ai/claude-code 2 - dias npm install -g @openai/codex + echo "Installing @anthropic-ai/claude-code globally via npm" + doas npm i -g @anthropic-ai/claude-code + echo "Installing @openai/codex globally via npm" + doas npm install -g @openai/codex + echo "Installing @google/gemini-cli globally via npm" + doas npm install -g @google/gemini-cli fi end end |
