diff options
| author | Paul Buetow <paul@buetow.org> | 2025-09-07 10:36:53 +0300 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2025-09-07 10:36:53 +0300 |
| commit | 90c0ba9f9d5dc8973ee74f006f9d1c9f174ffa5b (patch) | |
| tree | cbdb481ba7d6ec3922302ab69762ebbf1f860a2a | |
| parent | 29aefb0dd3b41eb137d2e0a217f8ec422970e619 (diff) | |
Update
| -rw-r--r-- | dotfiles/fish/conf.d/update.fish | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/dotfiles/fish/conf.d/update.fish b/dotfiles/fish/conf.d/update.fish index b03f919..e21fb03 100644 --- a/dotfiles/fish/conf.d/update.fish +++ b/dotfiles/fish/conf.d/update.fish @@ -17,7 +17,13 @@ function update::tools go install golang.org/x/tools/cmd/goimports@latest & set -a pids $last_pid - for prog in hexai tasksamurai timr + for hexai in hexai hexai-lsp hexai-action + 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 + + for prog in tasksamurai timr echo "Installing/updating $prog from codeberg.org/snonux/$prog/cmd/$prog@latest" go install codeberg.org/snonux/$prog/cmd/$prog@latest & set -a pids $last_pid |
