We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c22d7a5 commit cc0632aCopy full SHA for cc0632a
2 files changed
devops/install/dotnet-install.sh
@@ -926,7 +926,11 @@ get_user_install_path() {
926
if [ ! -z "${DOTNET_INSTALL_DIR:-}" ]; then
927
echo "$DOTNET_INSTALL_DIR"
928
else
929
- echo "$HOME/.dotnet"
+ if [ "$normalized_os" == "osx" ]; then
930
+ echo "/usr/local/share/dotnet"
931
+ else
932
+ echo "$HOME/.dotnet"
933
+ fi
934
fi
935
return 0
936
}
src/SDK/install.sh
@@ -111,8 +111,8 @@ fi
111
# Setup .NET for the server, the SDK Utilities, and any .NET modules that may
112
# need it
113
if [ "$executionEnvironment" = "Development" ]; then
114
- setupDotNet "$serverDotNetVersion" "aspnetcore"
115
setupDotNet "$serverDotNetVersion" "sdk"
+ setupDotNet "$serverDotNetVersion" "aspnetcore"
116
117
setupDotNet "$serverDotNetVersion" "aspnetcore"
118
0 commit comments