From 6ff50600e21da7fd5cccf184c6e27f0e77959b17 Mon Sep 17 00:00:00 2001 From: LinuxSquare Date: Thu, 11 Jan 2024 19:44:17 +0100 Subject: [PATCH] Fix typo --- utils/pull | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/pull b/utils/pull index 298edd7..1261f11 100644 --- a/utils/pull +++ b/utils/pull @@ -13,7 +13,7 @@ function pullpod() { if [[ ! -d "$(getValueByKey 'PODMAN_DIRECTORY')/${1}" ]]; then git clone "$(getValueByKey 'GIT_REPOSITORY')/${1}.git" "$(getValueByKey 'PODMAN_DIRECTORY')/${1}" - if [[ $(getLocalConfValue 'hasEnvVars' ) == true ]]; then + if [[ $(getLocalConfValue '.container.hasEnvVars' ) == true ]]; then for i in $(getLocalConfValue '.container.envVars[]'); do read -p "Please enter a value for '$i': " $(echo $i) export $(echo $i)