Skip to content

Commit

Permalink
Update appvars_create.sh
Browse files Browse the repository at this point in the history
Remove `APPFOLDER` variable.
Remove commented `debug` line.
  • Loading branch information
CLHatch committed Sep 7, 2024
1 parent 1dbc966 commit fe31c67
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions .scripts/appvars_create.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,8 @@ IFS=$'\n\t'
appvars_create() {
local APPNAME=${1-}
APPNAME=${APPNAME^^}
local APPSFOLDER="${SCRIPTPATH}/compose/.apps"
local FILENAME=${APPNAME,,}
local APPTEMPLATES="${APPSFOLDER}/${FILENAME}"
local APPTEMPLATES="${SCRIPTPATH}/compose/.apps/${FILENAME}"
local APPLABELFILE="${APPTEMPLATES}/${FILENAME}.labels.yml"

local -A APP_VAR_VALUE
Expand Down Expand Up @@ -51,7 +50,6 @@ appvars_create() {
;;
esac
done
#debug "appvars_create.sh: ${APP_VAR_MIGRATE[*]@A}"

# Actual processing starts here
info "Creating environment variables for ${APPNAME}."
Expand Down

0 comments on commit fe31c67

Please sign in to comment.