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 )