Skip to content

Commit d09a40f

Browse files
committed
fix: escape auto_database_uri function call in cat <<EOF in deploy function
Signed-off-by: Siddharth Tiwari <[email protected]>
1 parent 915c859 commit d09a40f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

auto-deploy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -303,7 +303,7 @@ EOF
303303
source <(
304304
cat <<EOF
305305
if [[ \${${i^^}_ENABLED} == "true" ]]; then
306-
${i}_uri=$(auto_database_uri "${i}")
306+
${i}_uri=\$(auto_database_uri "${i}")
307307
export ${i}_uri;
308308
elif [[ -v ${i^^}_URI ]]; then
309309
# if *DB_URI is passed by user then set it in pod

0 commit comments

Comments
 (0)