1
0
mirror of https://github.com/esphome/esphome.git synced 2025-10-21 03:03:50 +01:00

[core] Don't remove storage in clean-all (#10921)

This commit is contained in:
Jonathan Swoboda
2025-09-29 15:24:42 -04:00
committed by GitHub
parent 2aaafd6ebb
commit b176d1f890
3 changed files with 137 additions and 12 deletions

View File

@@ -1155,7 +1155,9 @@ def parse_args(argv):
"configuration", help="Your YAML configuration file(s).", nargs="+"
)
parser_clean_all = subparsers.add_parser("clean-all", help="Clean all files.")
parser_clean_all = subparsers.add_parser(
"clean-all", help="Clean all build and platform files."
)
parser_clean_all.add_argument(
"configuration", help="Your YAML configuration directory.", nargs="*"
)