diff options
| author | Dan Allen <dan.j.allen@gmail.com> | 2022-11-19 23:52:12 -0700 |
|---|---|---|
| committer | Dan Allen <dan.j.allen@gmail.com> | 2022-11-20 01:52:45 -0700 |
| commit | e7522f5f64271a6ed3fec2c4ce70ccf587c36c8a (patch) | |
| tree | 6952cfb358a938316657e871e6cc8b51a05b49d9 | |
| parent | a70a70239077d9d97a74e75db7da6a24c8065264 (diff) | |
explicitly pass --no-pager to git diff in CI workflow
| -rw-r--r-- | .github/workflows/ci.yml | 2 |
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 |
