diff options
Diffstat (limited to 'src/common-utils/install.sh')
-rwxr-xr-x | src/common-utils/install.sh | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/common-utils/install.sh b/src/common-utils/install.sh index 7edbe53..c6d9cf8 100755 --- a/src/common-utils/install.sh +++ b/src/common-utils/install.sh @@ -9,13 +9,13 @@ set -e -INSTALL_ZSH=${INSTALL_ZSH:-"true"} -INSTALL_OH_MY_ZSH=${INSTALL_OH_MY_ZSH:-"true"} -UPGRADE_PACKAGES=${UPGRADE_PACKAGES:-"true"} +INSTALL_ZSH=${INSTALLZSH:-"true"} +INSTALL_OH_MY_ZSH=${INSTALLOHMYZSH:-"true"} +UPGRADE_PACKAGES=${UPGRADEPACKAGES:-"true"} USERNAME=${USERNAME:-"automatic"} -USER_UID=${USER_UID:-"automatic"} -USER_GID=${USER_GID:-"automatic"} -ADD_NON_FREE_PACKAGES=${ADD_NON_FREE_PACKAGES:-"false"} +USER_UID=${UID:-"automatic"} +USER_GID=${GID:-"automatic"} +ADD_NON_FREE_PACKAGES=${NONFREEPACKAGES:-"false"} DEV_CONTAINERS_DIR="/usr/local/etc/vscode-dev-containers" MARKER_FILE="${DEV_CONTAINERS_DIR}/common" |