summaryrefslogtreecommitdiffstats
path: root/lib/python/qmk
diff options
context:
space:
mode:
authorRyan <fauxpark@gmail.com>2020-12-24 13:36:44 +1100
committerGitHub <noreply@github.com>2020-12-24 02:36:44 +0000
commit6a292e11d3faddbdbed8175a97aaed00a3469afa (patch)
treefab7c779727fae970a331068e947db9bf028bf07 /lib/python/qmk
parent3e3f93c971aec877efbee71da76b48f3f006e97c (diff)
`qmk fileformat`: only print complaints, and fix some of them (#11278)
Diffstat (limited to 'lib/python/qmk')
-rw-r--r--lib/python/qmk/cli/fileformat.py2
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