From bf7f869cc62a45caf619cf949c5bc3054c908e51 Mon Sep 17 00:00:00 2001 From: Julien Maupetit Date: Mon, 17 Jun 2024 15:10:33 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A8(project)=20use=20real=20TTY=20for?= =?UTF-8?q?=20streams=20handling?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit `qcc` requires to have a real tty to write from/to for stdout/stdin streams handling. --- bin/qcc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/qcc b/bin/qcc index 7dadaf97..a4022348 100755 --- a/bin/qcc +++ b/bin/qcc @@ -10,6 +10,6 @@ DOCKER_USER="${DOCKER_UID}:${DOCKER_GID}" DOCKER_USER=${DOCKER_USER} \ DOCKER_UID=${DOCKER_UID} \ DOCKER_GID=${DOCKER_GID} \ - docker compose run --rm \ + docker compose run --rm -T \ client \ qcc "$@"