Skip to content

Commit b4c1aeb

Browse files
authored
allow git-diff to run across the whole project
Closes #3043
1 parent 3d04ef5 commit b4c1aeb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.circleci/config.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -188,8 +188,8 @@ jobs:
188188
name: git diff
189189
command: |
190190
touch logs/prettier # to ensure that the file exists
191-
if ! git diff --quiet *.js source/ scripts/; then
192-
git diff *.js source/ scripts/ | tee logs/prettier
191+
if ! git diff --quiet --stat; then
192+
git diff | tee logs/prettier
193193
exit 1
194194
fi
195195
- run: *run-danger

0 commit comments

Comments
 (0)