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
|
|
|
|
|
2023-11-15 06:24:54 +01:00
|
|
|
from qmk.commands import find_make
|
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)
|
|
|
|
"""
|
2023-11-15 06:24:54 +01:00
|
|
|
cli.run([find_make(), 'distclean' if cli.args.all else 'clean'], capture_output=False, stdin=DEVNULL)
|