From bf0e6ec0a502130755f39cf12c98c0eeb309fdd8 Mon Sep 17 00:00:00 2001 From: Peter van Dijk Date: Wed, 22 Jan 2020 14:54:42 +0100 Subject: [PATCH] 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 --- .circleci/config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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" -- 2.47.2