Add .NET installation option to the development environment script (#615)

Co-authored-by: David Heinemeier Hansson <david@hey.com>
This commit is contained in:
devmobasa 2025-08-10 15:30:03 +02:00 committed by GitHub
parent 4fb0d59a82
commit 41ba61b760
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,7 +1,7 @@
#!/bin/bash
if [[ -z "$1" ]]; then
echo "Usage: omarchy-instal-dev-env <ruby|node|bun|go|laravel|python|elixir|rust|java|ocaml>" >&2
echo "Usage: omarchy-instal-dev-env <ruby|node|bun|go|laravel|python|elixir|rust|java|ocaml|dotnet>" >&2
exit 1
fi
@ -60,4 +60,8 @@ ocaml)
eval "$(opam env)"
opam install ocaml-lsp-server odoc ocamlformat utop --yes
;;
dotnet)
echo -e "Installing .NET...\n"
mise use --global dotnet@latest
;;
esac