diff --git a/packages/shorebird_cli/lib/src/commands/publish_command.dart b/packages/shorebird_cli/lib/src/commands/publish_command.dart index 257227ee..bb768543 100644 --- a/packages/shorebird_cli/lib/src/commands/publish_command.dart +++ b/packages/shorebird_cli/lib/src/commands/publish_command.dart @@ -118,7 +118,7 @@ product_id: $productId return ExitCode.software.code; } - logger.success('Deployed ${artifact.path}!'); + logger.success('Successfully deployed.'); return ExitCode.success.code; } diff --git a/packages/shorebird_cli/test/src/commands/publish_command_test.dart b/packages/shorebird_cli/test/src/commands/publish_command_test.dart index 1ea25c48..465e7c83 100644 --- a/packages/shorebird_cli/test/src/commands/publish_command_test.dart +++ b/packages/shorebird_cli/test/src/commands/publish_command_test.dart @@ -211,7 +211,7 @@ environment: command.run, getCurrentDirectory: () => tempDir, ); - verify(() => logger.success('Deployed ${artifact.path}!')).called(1); + verify(() => logger.success('Successfully deployed.')).called(1); verify( () => codePushClient.createPatch( baseVersion: version, @@ -235,7 +235,7 @@ environment: command.run, getCurrentDirectory: () => tempDir, ); - verify(() => logger.success('Deployed ${artifact.path}!')).called(1); + verify(() => logger.success('Successfully deployed.')).called(1); verify( () => codePushClient.createPatch( baseVersion: version,