refactor(templates): wrap shell variables in conditions with double quotes

This commit is contained in:
emrah
2026-02-12 19:30:21 +03:00
committed by Saúl Ibarra Corretgé
parent 156e36e97f
commit ab3a7c2621
6 changed files with 10 additions and 10 deletions

View File

@@ -1,7 +1,7 @@
#!/usr/bin/with-contenv bash
if [[ -z $JVB_DISABLE_XMPP ]]; then
if [[ -z $JVB_AUTH_PASSWORD ]]; then
if [[ -z "$JVB_DISABLE_XMPP" ]]; then
if [[ -z "$JVB_AUTH_PASSWORD" ]]; then
echo 'FATAL ERROR: JVB auth password must be set'
exit 1
fi