File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed
Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -926,7 +926,11 @@ get_user_install_path() {
926926 if [ ! -z " ${DOTNET_INSTALL_DIR:- } " ]; then
927927 echo " $DOTNET_INSTALL_DIR "
928928 else
929- echo " $HOME /.dotnet"
929+ if [ " $normalized_os " == " osx" ]; then
930+ echo " /usr/local/share/dotnet"
931+ else
932+ echo " $HOME /.dotnet"
933+ fi
930934 fi
931935 return 0
932936}
Original file line number Diff line number Diff line change 111111# Setup .NET for the server, the SDK Utilities, and any .NET modules that may
112112# need it
113113if [ " $executionEnvironment " = " Development" ]; then
114- setupDotNet " $serverDotNetVersion " " aspnetcore"
115114 setupDotNet " $serverDotNetVersion " " sdk"
115+ setupDotNet " $serverDotNetVersion " " aspnetcore"
116116else
117117 setupDotNet " $serverDotNetVersion " " aspnetcore"
118118fi
You can’t perform that action at this time.
0 commit comments