mirror of
https://github.com/basecamp/omarchy.git
synced 2026-02-17 15:25:37 +00:00
Add .NET installation option to the development environment script (#615)
Co-authored-by: David Heinemeier Hansson <david@hey.com>
This commit is contained in:
@@ -1,7 +1,7 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
if [[ -z "$1" ]]; then
|
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
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
@@ -60,4 +60,8 @@ ocaml)
|
|||||||
eval "$(opam env)"
|
eval "$(opam env)"
|
||||||
opam install ocaml-lsp-server odoc ocamlformat utop --yes
|
opam install ocaml-lsp-server odoc ocamlformat utop --yes
|
||||||
;;
|
;;
|
||||||
|
dotnet)
|
||||||
|
echo -e "Installing .NET...\n"
|
||||||
|
mise use --global dotnet@latest
|
||||||
|
;;
|
||||||
esac
|
esac
|
||||||
|
|||||||
Reference in New Issue
Block a user