Fix upload command. MQTT user and password is missing from configuration. #5093 (#5766)

Co-authored-by: ulrich <u.martiensen@umartiensen.de>
Co-authored-by: Jesse Hills <3060199+jesserockz@users.noreply.github.com>
This commit is contained in:
Ulrich 2024-04-28 21:56:13 +02:00 committed by GitHub
parent 8b6a358452
commit 9ea442f328
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -768,7 +768,9 @@ def parse_args(argv):
)
parser_upload = subparsers.add_parser(
"upload", help="Validate the configuration and upload the latest binary."
"upload",
help="Validate the configuration and upload the latest binary.",
parents=[mqtt_options],
)
parser_upload.add_argument(
"configuration", help="Your YAML configuration file(s).", nargs="+"