From: Peter van Dijk Date: Wed, 22 Jan 2020 13:54:42 +0000 (+0100) Subject: avoid 'git show -s' from starting a pager in CircleCI X-Git-Tag: auth-4.3.0-beta2~31^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=refs%2Fpull%2F8737%2Fhead;p=thirdparty%2Fpdns.git avoid 'git show -s' from starting a pager in CircleCI this is a very long commit message to trigger the problem where our circleci setup tries to use the pager to show long commit messages just like this one although there are others quite like it but those tend to be way easier to read --- diff --git a/.circleci/config.yml b/.circleci/config.yml index fdad96fd71..873907628e 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -26,7 +26,7 @@ commands: git clone --depth 1 --branch $CIRCLE_BRANCH $CIRCLE_REPOSITORY_URL /opt/project fi cd /opt/project - git show -s + git --no-pager show -s get-workspace: description: "Attach workspace to /opt and symlink checkout into home"