summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2025-06-28 09:51:50 +0300
committerPaul Buetow <paul@buetow.org>2025-06-28 09:51:50 +0300
commit37c045d9b3e02b735055632f8231579a8da7a451 (patch)
treec8c4407ef93195ad0641bf5db0deb6342c89b851
parent1a5795ce59630d2d0be0d34b6ff291f66c542fc4 (diff)
Update
-rw-r--r--dotfiles/fish/conf.d/update.fish4
1 files changed, 1 insertions, 3 deletions
diff --git a/dotfiles/fish/conf.d/update.fish b/dotfiles/fish/conf.d/update.fish
index beb1ae8..1df793d 100644
--- a/dotfiles/fish/conf.d/update.fish
+++ b/dotfiles/fish/conf.d/update.fish
@@ -2,8 +2,7 @@ function update::tools
go install github.com/golangci/golangci-lint/v2/cmd/golangci-lint@latest
go install golang.org/x/tools/cmd/goimports@latest
go install codeberg.org/snonux/tasksamurai/cmd/tasksamurai@latest
- if [ "$(uname)" = Linux ]
- then
+ if test (uname) = Linux
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"
@@ -14,6 +13,5 @@ function update::tools
doas npm install -g @openai/codex
echo "Installing @google/gemini-cli globally via npm"
doas npm install -g @google/gemini-cli
- fi
end
end