2020-11-04 20:18:47 +01:00
|
|
|
"""Clean the QMK firmware folder of build artifacts.
|
|
|
|
"""
|
2021-05-20 00:24:46 +02:00
|
|
|
from subprocess import DEVNULL
|
|
|
|
|
|
|
|
from qmk.commands import create_make_target
|
2020-11-04 20:18:47 +01:00
|
|
|
from milc import cli
|
|
|
|
|
|
|
|
|
|
|
|
@cli.argument('-a', '--all', arg_only=True, action='store_true', help='Remove *.hex and *.bin files in the QMK root as well.')
|
|
|
|
@cli.subcommand('Clean the QMK firmware folder of build artifacts.')
|
|
|
|
def clean(cli):
|
|
|
|
"""Runs `make clean` (or `make distclean` if --all is passed)
|
|
|
|
"""
|
2021-05-20 00:24:46 +02:00
|
|
|
cli.run(create_make_target('distclean' if cli.args.all else 'clean'), capture_output=False, stdin=DEVNULL)
|