mirror of
https://github.com/VSCodium/vscodium.git
synced 2026-04-22 02:50:14 +10:00
fix: default values
This commit is contained in:
8
utils.sh
8
utils.sh
@@ -1,10 +1,10 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
APP_NAME="${APP_NAME:VSCodium}"
|
||||
APP_NAME="${APP_NAME:-VSCodium}"
|
||||
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
|
||||
|
||||
|
||||
Reference in New Issue
Block a user