Skip to content

Commit 4eb0a3b

Browse files
committed
fix: log arguments passed to docker start script to stdout.
When trying to get this working under kubernetes the logs weren't reporting the arguments passed to the script.
1 parent f075e97 commit 4eb0a3b

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

scripts/Docker/roundup_start

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,8 @@ else
3030
might_be_interactive="false"
3131
fi
3232

33+
printf "Starting Roundup with arguments: $@"
34+
3335
for tracker_spec in "$@"; do
3436
# IFS== set a=b doesn't just assign $1 and $2 in busybox ash
3537
# it also clobbers '$@'. 'printf mumble | read' starts read in a

0 commit comments

Comments
 (0)