From 97af66c143492556313d8048f26583cb920fca73 Mon Sep 17 00:00:00 2001 From: Cory Francis Myers Date: Thu, 26 Oct 2023 18:03:06 -0700 Subject: [PATCH] fix: Git needs "--no-pager" under non-interactive SSH Otherwise staging-test-with-rebase's SSH from CircleCI stalls on "WARNING: terminal is not fully functional". --- builder/build-debs.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/builder/build-debs.sh b/builder/build-debs.sh index c91f488f1c..99eafaa84d 100755 --- a/builder/build-debs.sh +++ b/builder/build-debs.sh @@ -4,7 +4,7 @@ set -euxo pipefail -git log -1 --oneline --no-color --show-signature +git --no-pager log -1 --oneline --show-signature --no-color OCI_RUN_ARGUMENTS="--user=root -v $(pwd):/src:Z"