From 8eafd2b402ac9ce01ff2f6c822cbe788307379ca Mon Sep 17 00:00:00 2001 From: Felix Angelov Date: Thu, 27 Jul 2023 10:12:36 -0500 Subject: [PATCH] chore(shorebird_cli): deprecate `accounts upgrade` command (#933) --- .../lib/src/commands/account/upgrade_account_command.dart | 7 +++++++ 1 file changed, 7 insertions(+) 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,