Skip to content

Commit e277f17

Browse files
committed
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.
1 parent 8fcdab7 commit e277f17

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

entrypoint-user.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,5 +64,5 @@ sleep 5
6464
sleep 2
6565
echo -e "Tail log files"
6666
echo -e "================================="
67-
tail -F log/*/*.log &
67+
tail -F "${logdir}/*/*.log" &
6868
wait

0 commit comments

Comments
 (0)