From f6f961f381f72adb4d391a1a55c0dbd6c8a22fc7 Mon Sep 17 00:00:00 2001 From: Thomas Haller Date: Wed, 11 May 2022 22:12:56 +0200 Subject: [PATCH] gitlab-ci: avoid pager for "run-test.sh" In particular, `dpkg -l` likes to show a pager, when you are on the terminal. Being on the terminal happens, if you try to reproduce a test on your own container. So let's avoid that. --- .gitlab-ci/run-test.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.gitlab-ci/run-test.sh b/.gitlab-ci/run-test.sh index 18038304f8..c8c26f0815 100755 --- a/.gitlab-ci/run-test.sh +++ b/.gitlab-ci/run-test.sh @@ -2,6 +2,8 @@ set -ex +export PAGER=cat + IS_FEDORA=0 IS_CENTOS=0 IS_ALPINE=0