Skip to content

Commit

Permalink
🚸 Do not show message about the report for non-interactive/container …
Browse files Browse the repository at this point in the history
…runs
  • Loading branch information
tiulpin committed Dec 11, 2023
1 parent ed74ca3 commit f4c505c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/scan.go
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ But you can always override qodana.yaml options with the following command-line

if options.ShowReport {
core.ShowReport(options.ResultsDir, options.ReportDir, options.Port)
} else {
} else if !core.IsContainer() && core.IsInteractive() {
core.WarningMessage(
"To view the Qodana report later, run %s in the current directory or add %s flag to %s",
core.PrimaryBold("qodana show"),
Expand Down

0 comments on commit f4c505c

Please sign in to comment.