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/desktop-lite/install.sh | |
parent | aecf2ad152a75663211a2ac0926e6122c2b0b07f (diff) |
Options: Follow camelCase (#89)
rename Options
Diffstat (limited to 'src/desktop-lite/install.sh')
-rwxr-xr-x | src/desktop-lite/install.sh | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/desktop-lite/install.sh b/src/desktop-lite/install.sh index e9f74f1..806a7e1 100755 --- a/src/desktop-lite/install.sh +++ b/src/desktop-lite/install.sh @@ -7,10 +7,10 @@ # Docs: https://github.com/microsoft/vscode-dev-containers/blob/main/script-library/docs/desktop-lite.md # Maintainer: The VS Code and Codespaces Teams -NOVNC_VERSION=${NOVNC_VERSION:-"1.2.0"} # TODO: Add in a 'latest' auto-detect and swap name to 'version' -VNC_PASSWORD=${VNC_PASSWORD:-"vscode"} -NOVNC_PORT="${NOVNC_PORT:-6080}" -VNC_PORT="${VNC_PORT:-5901}" +NOVNC_VERSION=${NOVNCVERSION:-"1.2.0"} # TODO: Add in a 'latest' auto-detect and swap name to 'version' +VNC_PASSWORD=${PASSWORD:-"vscode"} +NOVNC_PORT="${WEBPORT:-6080}" +VNC_PORT="${VNCPORT:-5901}" INSTALL_NOVNC=${INSTALL_NOVNC:-"true"} USERNAME=${USERNAME:-"automatic"} |