From 69aff392053abf71e6a512255ca7163596af0c62 Mon Sep 17 00:00:00 2001 From: Ivan Kravets Date: Mon, 20 Dec 2021 20:57:18 +0200 Subject: [PATCH] Warn about package publishing time --- platformio/commands/package.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/platformio/commands/package.py b/platformio/commands/package.py index 8ce79dd5..3e3bdaa6 100644 --- a/platformio/commands/package.py +++ b/platformio/commands/package.py @@ -191,6 +191,12 @@ def package_publish( # pylint: disable=too-many-arguments, too-many-locals abort=True, ) + click.secho( + "The package publishing may take some time depending " + "on your Internet connection and the package size.", + fg="yellow", + ) + click.echo("Publishing...") response = RegistryClient().publish_package( owner, type_, archive_path, released_at, private, notify )