diff --git a/packages/shorebird_cli/lib/src/commands/account/upgrade_account_command.dart b/packages/shorebird_cli/lib/src/commands/account/upgrade_account_command.dart index 7d56925f..71103f99 100644 --- a/packages/shorebird_cli/lib/src/commands/account/upgrade_account_command.dart +++ b/packages/shorebird_cli/lib/src/commands/account/upgrade_account_command.dart @@ -25,6 +25,13 @@ class UpgradeAccountCommand extends ShorebirdCommand @override Future run() async { + final consoleLink = link(uri: Uri.parse('https://console.shorebird.dev')); + logger.warn( + ''' +This command is deprecated and will be removed in a future release. +Please use $consoleLink instead.''', + ); + try { await validatePreconditions( checkUserIsAuthenticated: true,