summaryrefslogtreecommitdiff
path: root/fish/conf.d/update.fish
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2026-02-12 09:31:27 +0200
committerPaul Buetow <paul@buetow.org>2026-02-12 09:31:27 +0200
commitced974f52f9193533709d6fc7974287dfa104ba8 (patch)
tree0e1c49f73ab7916b298afd10682a9d281230b391 /fish/conf.d/update.fish
parent206480c6b51eb7cb42f879a73be9b63f9c0cc8ee (diff)
Update
Diffstat (limited to 'fish/conf.d/update.fish')
-rw-r--r--fish/conf.d/update.fish7
1 files changed, 6 insertions, 1 deletions
diff --git a/fish/conf.d/update.fish b/fish/conf.d/update.fish
index 353ecb8..b37f7aa 100644
--- a/fish/conf.d/update.fish
+++ b/fish/conf.d/update.fish
@@ -17,12 +17,17 @@ function update::tools
go install golang.org/x/tools/cmd/goimports@latest &
set -a pids $last_pid
- for prog in hexai hexai-lsp hexai-tmux-action hexai-tmux-edit hexai-mcp-server
+ for prog in hexai hexai-lsp-server hexai-tmux-action hexai-tmux-edit hexai-mcp-server
echo "Installing/updating $prog from codeberg.org/snonux/hexai/cmd/$prog@latest"
go install codeberg.org/snonux/hexai/cmd/$prog@latest &
set -a pids $last_pid
end
+ # Renamed to hexai-lsp-server
+ if test -f ~/go/bin/hexai-lsp
+ rm ~/go/bin/hexai-lsp
+ end
+
for prog in tasksamurai timr perc
echo "Installing/updating $prog from codeberg.org/snonux/$prog/cmd/$prog@latest"
go install codeberg.org/snonux/$prog/cmd/$prog@latest &