diff --git a/packages/shorebird_cli/lib/src/commands/apps/list_apps_command.dart b/packages/shorebird_cli/lib/src/commands/apps/list_apps_command.dart index 3df56236..35bd8f73 100644 --- a/packages/shorebird_cli/lib/src/commands/apps/list_apps_command.dart +++ b/packages/shorebird_cli/lib/src/commands/apps/list_apps_command.dart @@ -8,7 +8,7 @@ import 'package:shorebird_code_push_client/shorebird_code_push_client.dart'; /// {@template list_apps_command} /// /// `shorebird apps list` -/// List all Shorebird apps. +/// List all apps using Shorebird. /// {@endtemplate} class ListAppsCommand extends ShorebirdCommand { /// {@macro list_apps_command} @@ -19,7 +19,7 @@ class ListAppsCommand extends ShorebirdCommand { }); @override - String get description => 'List all Shorebird apps.'; + String get description => 'List all apps using Shorebird.'; @override String get name => 'list'; @@ -31,7 +31,7 @@ class ListAppsCommand extends ShorebirdCommand { Future? run() async { final session = auth.currentSession; if (session == null) { - logger.err('You must be logged in to publish.'); + logger.err('You must be logged in.'); return ExitCode.noUser.code; } diff --git a/packages/shorebird_cli/test/src/commands/apps/list_apps_command_test.dart b/packages/shorebird_cli/test/src/commands/apps/list_apps_command_test.dart index efc5bb8a..e384465c 100644 --- a/packages/shorebird_cli/test/src/commands/apps/list_apps_command_test.dart +++ b/packages/shorebird_cli/test/src/commands/apps/list_apps_command_test.dart @@ -39,7 +39,7 @@ void main() { }); test('description is correct', () { - expect(command.description, equals('List all Shorebird apps.')); + expect(command.description, equals('List all apps using Shorebird.')); }); test('returns ExitCode.noUser when not logged in', () async {