From: Peter van Dijk Date: Fri, 13 Nov 2020 17:51:44 +0000 (+0100) Subject: rec-4.3.x: avoid paging in git X-Git-Tag: rec-4.3.6~1^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F9722%2Fhead;p=thirdparty%2Fpdns.git rec-4.3.x: avoid paging in git --- 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