From e277f17c6d58ef91366abd4679d1ba872a0ce19b Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Wed, 5 Jul 2023 11:39:41 +0100 Subject: [PATCH] fix: fix tailing log files The commit fixes an issue where the log files were not being properly tailed. The change modifies the code to correctly tail the log files by using the correct directory path. --- entrypoint-user.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/entrypoint-user.sh b/entrypoint-user.sh index 157e5da..694afe4 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 log/*/*.log & +tail -F "${logdir}/*/*.log" & wait