From 4a1c1e51536d036cb490beeff01fd84777e7f877 Mon Sep 17 00:00:00 2001 From: Asif Bacchus Date: Tue, 27 Jul 2021 14:59:16 -0600 Subject: [PATCH] refactor(helpers): set initial vars to null vs unset --- helpers/ab-nginx.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/helpers/ab-nginx.sh b/helpers/ab-nginx.sh index c1ec770..8a038ad 100644 --- a/helpers/ab-nginx.sh +++ b/helpers/ab-nginx.sh @@ -30,10 +30,10 @@ NETWORK='nginx_network' SUBNET='172.31.254.0/24' HTTP_PORT=80 HTTPS_PORT=443 -unset CONFIG_DIR -unset SERVERS_DIR -unset WEBROOT_DIR -unset vmount +CONFIG_DIR="" +SERVERS_DIR="" +WEBROOT_DIR="" +volumeMounts="" ### functions