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 | |
| parent | 3e3f93c971aec877efbee71da76b48f3f006e97c (diff) | |
| download | qmk_firmware-6a292e11d3faddbdbed8175a97aaed00a3469afa.tar.gz qmk_firmware-6a292e11d3faddbdbed8175a97aaed00a3469afa.zip | |
`qmk fileformat`: only print complaints, and fix some of them (#11278)
Diffstat (limited to 'lib')
| -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 db8e13f10..112d8d59d 100644 --- a/lib/python/qmk/cli/fileformat.py +++ b/lib/python/qmk/cli/fileformat.py | |||
| @@ -9,5 +9,5 @@ import subprocess | |||
| 9 | def fileformat(cli): | 9 | def fileformat(cli): |
| 10 | """Run several general formatting commands. | 10 | """Run several general formatting commands. |
| 11 | """ | 11 | """ |
| 12 | dos2unix = subprocess.run(['bash', '-c', 'git ls-files -z | xargs -0 dos2unix']) | 12 | dos2unix = subprocess.run(['bash', '-c', 'git ls-files -z | xargs -0 dos2unix'], stdout=subprocess.DEVNULL) |
| 13 | return dos2unix.returncode | 13 | return dos2unix.returncode |
