From 46598b7b72638466acb376f2249c69aeea505408 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Wed, 5 Jul 2023 13:28:58 +0100 Subject: [PATCH] refactor: update log file path in entrypoint-user.sh The log file path in the entrypoint-user.sh script has been updated to use the LGSM_LOGDIR environment variable instead of the previous logdir variable. This change ensures that the correct log files are being tailed. --- entrypoint-user.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/entrypoint-user.sh b/entrypoint-user.sh index 694afe4..debc3af 100755 --- a/entrypoint-user.sh +++ b/entrypoint-user.sh @@ -64,5 +64,5 @@ sleep 5 sleep 2 echo -e "Tail log files" echo -e "=================================" -tail -F "${logdir}/*/*.log" & +tail -F "${LGSM_LOGDIR}"/*/*.log & wait