diff options
author | Samruddhi Khandale <skhandale@microsoft.com> | 2022-08-11 21:37:10 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-11 21:37:10 +0300 |
commit | 44694d699fd715edeeb9fcea9271b09c39b5ac35 (patch) | |
tree | 3a89d5c06276b9721661d2b13fc37a2e87aa85a7 /src/dotnet/install.sh | |
parent | aecf2ad152a75663211a2ac0926e6122c2b0b07f (diff) |
Options: Follow camelCase (#89)
rename Options
Diffstat (limited to 'src/dotnet/install.sh')
-rwxr-xr-x | src/dotnet/install.sh | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/dotnet/install.sh b/src/dotnet/install.sh index 3e4bfec..44fbe54 100755 --- a/src/dotnet/install.sh +++ b/src/dotnet/install.sh @@ -8,9 +8,9 @@ # Maintainer: The VS Code and Codespaces Teams DOTNET_VERSION=${VERSION:-"latest"} -DOTNET_RUNTIME_ONLY=${RUNTIME_ONLY:-"false"} -OVERRIDE_DEFAULT_VERSION=${OVERRIDE_DEFAULT_VERSION:-"true"} -INSTALL_USING_APT=${INSTALL_USING_APT:-"true"} +DOTNET_RUNTIME_ONLY=${RUNTIMEONLY:-"false"} +OVERRIDE_DEFAULT_VERSION=${OVERRIDEDEFAULTVERSION:-"true"} +INSTALL_USING_APT=${INSTALLUSINGAPT:-"true"} USERNAME=${USERNAME:-"automatic"} UPDATE_RC=${UPDATE_RC:-"true"} @@ -28,7 +28,7 @@ DOTNET_VERSION_CODENAMES_REQUIRE_OLDER_LIBSSL_1="buster bullseye bionic focal hi # Comma-separated list of dotnet versions to be installed # alongside DOTNET_VERSION, but not set as default. -ADDITIONAL_VERSIONS=${ADDITIONAL_VERSIONS:-""} +ADDITIONAL_VERSIONS=${ADDITIONALVERSIONS:-""} # Exit on failure. set -e |