always tee test linuxkit run to tty, so if it gets stuck, we see why (#4107)

Signed-off-by: Avi Deitcher <avi@deitcher.net>
This commit is contained in:
Avi Deitcher
2025-02-19 19:41:06 +02:00
committed by GitHub
parent 76b519705b
commit efb139697e
113 changed files with 117 additions and 112 deletions

View File

@@ -12,3 +12,8 @@ LINUXKIT_TMPDIR="${RT_PROJECT_ROOT}/_tmp"
# FIXME: Should source the rtf/lib/lib.sh instead
RT_CANCEL=253
# command to run `linuxkit run` that includes streaming to stderr, so you never miss logs
linuxkitrun() {
linuxkit run $@ | tee /dev/stderr
}