From e635bfedc5e0589118c27ccd91704fbe4b1b7638 Mon Sep 17 00:00:00 2001 From: Trenton Holmes Date: Thu, 20 Oct 2022 19:50:00 -0700 Subject: [PATCH] Corrects the ls command redirection --- docker/docker-prepare.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/docker-prepare.sh b/docker/docker-prepare.sh index e1c970284..a3fc5e1c5 100755 --- a/docker/docker-prepare.sh +++ b/docker/docker-prepare.sh @@ -109,7 +109,7 @@ customer_container_init() { fi # Make sure custom init directory has files in it - if [ -n "$(/bin/ls -A "${custom_script_dir} "2>/dev/null)" ]; then + if [ -n "$(/bin/ls -A "${custom_script_dir}" 2>/dev/null)" ]; then echo "[custom-init] files found in ${custom_script_dir} executing" # Loop over files in the directory for SCRIPT in "${custom_script_dir}"/*; do