diff options
author | Ryan <fauxpark@gmail.com> | 2020-12-24 13:36:44 +1100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-24 02:36:44 +0000 |
commit | 6a292e11d3faddbdbed8175a97aaed00a3469afa (patch) | |
tree | fab7c779727fae970a331068e947db9bf028bf07 /lib/python/qmk/cli/fileformat.py | |
parent | 3e3f93c971aec877efbee71da76b48f3f006e97c (diff) |
`qmk fileformat`: only print complaints, and fix some of them (#11278)
Diffstat (limited to 'lib/python/qmk/cli/fileformat.py')
-rw-r--r-- | lib/python/qmk/cli/fileformat.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/python/qmk/cli/fileformat.py b/lib/python/qmk/cli/fileformat.py index db8e13f109..112d8d59da 100644 --- a/lib/python/qmk/cli/fileformat.py +++ b/lib/python/qmk/cli/fileformat.py @@ -9,5 +9,5 @@ import subprocess def fileformat(cli): """Run several general formatting commands. """ - dos2unix = subprocess.run(['bash', '-c', 'git ls-files -z | xargs -0 dos2unix']) + dos2unix = subprocess.run(['bash', '-c', 'git ls-files -z | xargs -0 dos2unix'], stdout=subprocess.DEVNULL) return dos2unix.returncode |