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

Signed-off-by: Avi Deitcher <avi@deitcher.net>
This commit is contained in:
Avi Deitcher 2025-02-19 18:30:50 +02:00
parent 76b519705b
commit 1c543056f2
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
}