Skip to content

Commit

Permalink
🐛 run converter if show-report or save-report are specified (#290)
Browse files Browse the repository at this point in the history
  • Loading branch information
MekhailS authored Mar 6, 2024
1 parent d7cd788 commit 20e6e3f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/system.go
Original file line number Diff line number Diff line change
Expand Up @@ -473,7 +473,7 @@ const (

// saveReport saves web files to expect, and generates json.
func saveReport(opts *QodanaOptions) {
if opts.SaveReport || opts.ShowReport || !platform.IsContainer() {
if !(platform.IsContainer() && (opts.SaveReport || opts.ShowReport)) {
return
}

Expand Down

0 comments on commit 20e6e3f

Please sign in to comment.