From 67b756b1f4c58ac62b12602266e9cf1f21728a59 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Wed, 18 Feb 2026 19:40:01 +0800 Subject: [PATCH] try to run curator build in a docker pty may be write output for quicker logging perhaps --- automated/build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/automated/build.sh b/automated/build.sh index 2ae32c71..8154ecff 100755 --- a/automated/build.sh +++ b/automated/build.sh @@ -153,7 +153,7 @@ esac # Now do the actual build. We need to first set the owner of the home directory # correctly, so we run the command as root, change owner, and then use sudo to # switch back to the current user -docker run $ARGS_BUILD $IMAGE nice -n 15 /bin/bash -c " +docker run -t $ARGS_BUILD $IMAGE nice -n 15 /bin/bash -c " chown $USER $HOME exec sudo -E -u $USER env \"HOME=$HOME\" \"PATH=\$PATH\" curator build --jobs $JOBS "