From 6a292e11d3faddbdbed8175a97aaed00a3469afa Mon Sep 17 00:00:00 2001 From: Ryan Date: Thu, 24 Dec 2020 13:36:44 +1100 Subject: `qmk fileformat`: only print complaints, and fix some of them (#11278) --- lib/python/qmk/cli/fileformat.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/python/qmk') 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 -- cgit v1.2.3