diff --git a/maestro-cli/src/main/java/maestro/cli/cloud/CloudInteractor.kt b/maestro-cli/src/main/java/maestro/cli/cloud/CloudInteractor.kt index 6c5596228b..ad9a792bcb 100644 --- a/maestro-cli/src/main/java/maestro/cli/cloud/CloudInteractor.kt +++ b/maestro-cli/src/main/java/maestro/cli/cloud/CloudInteractor.kt @@ -504,7 +504,7 @@ class CloudInteractor( ): Int { val authToken = getAuthToken(apiKey) - PrintUtils.info("\uD83D\uDD0E Analyzing Flow(s)...\n") + PrintUtils.info("\n\uD83D\uDD0E Analyzing Flow(s)...") try { val response = client.analyze(authToken, flowFiles) @@ -518,7 +518,7 @@ class CloudInteractor( val outputFilePath = HtmlInsightsAnalysisReporter().report(response.output, debugOutputPath) val os = System.getProperty("os.name").lowercase(Locale.getDefault()) - PrintUtils.message( + PrintUtils.success( listOf( "To view the report, open the following link in your browser:", "file:${if (os.contains("win")) "///" else "//"}${outputFilePath}\n",