diff options
author | Ryan <fauxpark@gmail.com> | 2020-11-05 06:18:47 +1100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-04 19:18:47 +0000 |
commit | 7ef98e7f6164afd1d825a6ce8efa20560927fcc9 (patch) | |
tree | 74734d3984caae26dfebdecdfd79e35d72b81500 /lib/python/qmk/cli/clean.py | |
parent | d46fa2274cac7d1dad2e6c684d3fabf729efaa2e (diff) | |
download | qmk_firmware-7ef98e7f6164afd1d825a6ce8efa20560927fcc9.tar.gz qmk_firmware-7ef98e7f6164afd1d825a6ce8efa20560927fcc9.zip |
CLI: Add `qmk clean` (#10785)
Diffstat (limited to 'lib/python/qmk/cli/clean.py')
-rw-r--r-- | lib/python/qmk/cli/clean.py | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/lib/python/qmk/cli/clean.py b/lib/python/qmk/cli/clean.py new file mode 100644 index 000000000..ec6501b76 --- /dev/null +++ b/lib/python/qmk/cli/clean.py | |||
@@ -0,0 +1,16 @@ | |||
1 | """Clean the QMK firmware folder of build artifacts. | ||
2 | """ | ||
3 | from qmk.commands import run | ||
4 | from milc import cli | ||
5 | |||
6 | import shutil | ||
7 | |||
8 | |||
9 | @cli.argument('-a', '--all', arg_only=True, action='store_true', help='Remove *.hex and *.bin files in the QMK root as well.') | ||
10 | @cli.subcommand('Clean the QMK firmware folder of build artifacts.') | ||
11 | def clean(cli): | ||
12 | """Runs `make clean` (or `make distclean` if --all is passed) | ||
13 | """ | ||
14 | make_cmd = 'gmake' if shutil.which('gmake') else 'make' | ||
15 | |||
16 | run([make_cmd, 'distclean' if cli.args.all else 'clean']) | ||