From db804b96c3eb9621402f78c09691aeffd38c65e3 Mon Sep 17 00:00:00 2001 From: Peter van Dijk Date: Fri, 13 Nov 2020 18:51:44 +0100 Subject: [PATCH] rec-4.3.x: avoid paging in git --- .circleci/config.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 0e672e8299..e86af19e2a 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" @@ -500,7 +500,7 @@ jobs: name: Check formatting command: | ./build-scripts/format-code pdns/recursordist/*.[ch][ch] - git diff + git --no-pager diff exit $(git diff | wc -l) working_directory: ~/project -- 2.47.2