Skip to content

Commit

Permalink
ci: make git diff quiet
Browse files Browse the repository at this point in the history
  • Loading branch information
ovsds committed Dec 20, 2023
1 parent 02a53cc commit b044d98
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tools/taskfiles/taskfile_code_quality.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@ vars:

# Files changed since last commit
CHANGED_PY_SINGLE_LINE:
sh: cd {{.ROOT_DIR}} && echo $(git diff --relative --diff-filter=ACMRT --name-only HEAD | grep '\.py$' )
sh: cd {{.ROOT_DIR}} && echo $(git diff --quiet --relative --diff-filter=ACMRT --name-only HEAD | grep '\.py$' )

CHANGED_PYPROJECT_SINGLE_LINE:
sh: cd {{.ROOT_DIR}} && echo $(git diff --relative --diff-filter=ACMRT --name-only HEAD | grep 'pyproject.toml$' )
sh: cd {{.ROOT_DIR}} && echo $(git diff --quiet --relative --diff-filter=ACMRT --name-only HEAD | grep 'pyproject.toml$' )

DO_RUFF_FIX: "false"

Expand Down

0 comments on commit b044d98

Please sign in to comment.