Skip to content

Commit

Permalink
Redirect diff output to /dev/null
Browse files Browse the repository at this point in the history
  • Loading branch information
joanlopez committed Jan 9, 2024
1 parent b59031a commit 75824c3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/all.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
- name: Verify the build is up to date
run: |
npm run webpack -- --output-path="${RUNNER_TEMP}/dist"
if ! diff -r "${RUNNER_TEMP}/dist" dist; then
if ! diff -r "${RUNNER_TEMP}/dist" dist > /dev/null; then
echo "Build is out of date, please run 'npm run webpack' and commit the changes"
exit 1
fi
Expand Down

0 comments on commit 75824c3

Please sign in to comment.