summaryrefslogtreecommitdiff
path: root/.github/workflows/ci.yml
diff options
context:
space:
mode:
authorDan Allen <dan.j.allen@gmail.com>2022-11-19 23:52:12 -0700
committerDan Allen <dan.j.allen@gmail.com>2022-11-20 01:52:45 -0700
commite7522f5f64271a6ed3fec2c4ce70ccf587c36c8a (patch)
tree6952cfb358a938316657e871e6cc8b51a05b49d9 /.github/workflows/ci.yml
parenta70a70239077d9d97a74e75db7da6a24c8065264 (diff)
explicitly pass --no-pager to git diff in CI workflow
Diffstat (limited to '.github/workflows/ci.yml')
-rw-r--r--.github/workflows/ci.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 60f0a9c9..e4e43af6 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -109,7 +109,7 @@ jobs:
cd -
if [ -n "$(git diff --name-only -- data/stylesheets)" ]; then
echo 'Detected the following uncommitted changes to the default stylesheet:'
- git diff
+ git --no-pager diff
exit 1
fi
- name: Run tests