Browse Source

fix: default values

Baptiste Augrain 2 months ago
parent
commit
109d240f13
1 changed files with 4 additions and 4 deletions
  1. 4 4
      utils.sh

+ 4 - 4
utils.sh

@@ -1,10 +1,10 @@
 #!/usr/bin/env bash
 #!/usr/bin/env bash
 
 
-APP_NAME="${APP_NAME:VSCodium}"
+APP_NAME="${APP_NAME:-VSCodium}"
 APP_NAME_LC="$( echo "${APP_NAME}" | awk '{print tolower($0)}' )"
 APP_NAME_LC="$( echo "${APP_NAME}" | awk '{print tolower($0)}' )"
-BINARY_NAME="${BINARY_NAME:codium}"
-GH_REPO_PATH="${GH_REPO_PATH:VSCodium/vscodium}"
-ORG_NAME="${ORG_NAME:VSCodium}"
+BINARY_NAME="${BINARY_NAME:-codium}"
+GH_REPO_PATH="${GH_REPO_PATH:-VSCodium/vscodium}"
+ORG_NAME="${ORG_NAME:-VSCodium}"
 
 
 # All common functions can be added to this file
 # All common functions can be added to this file