Add Bun as an option too

This commit is contained in:
David Heinemeier Hansson
2025-08-09 22:34:57 +02:00
parent 06345c7e25
commit 616381833c
2 changed files with 7 additions and 2 deletions

View File

@@ -1,7 +1,7 @@
#!/bin/bash
if [[ -z "$1" ]]; then
echo "Usage: omarchy-instal-dev-env <ruby|node|go|laravel|python|elixir|rust|java>" >&2
echo "Usage: omarchy-instal-dev-env <ruby|node|bun|go|laravel|python|elixir|rust|java>" >&2
exit 1
fi
@@ -16,6 +16,10 @@ node)
echo -e "Installing Node.js...\n"
mise use --global node@lts
;;
bun)
echo -e "Installing Bun...\n"
mise use -g bun@latest
;;
go)
echo -e "Installing Go...\n"
mise use --global go@latest