Skip to content

Commit

Permalink
Switch default to empty string
Browse files Browse the repository at this point in the history
  • Loading branch information
kchason committed Jul 19, 2023
1 parent 8878dbc commit 54bf87f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion v2/internal/runner/options.go
Original file line number Diff line number Diff line change
Expand Up @@ -412,7 +412,7 @@ func readEnvInputVars(options *types.Options) {
options.MarkdownExportSortMode = strings.ToLower(os.Getenv("MARKDOWN_EXPORT_SORT_MODE"))
// If the user has not specified a valid sort mode, use the default
if options.MarkdownExportSortMode != "template" && options.MarkdownExportSortMode != "severity" && options.MarkdownExportSortMode != "host" {
options.MarkdownExportSortMode = "none"
options.MarkdownExportSortMode = ""
}
}

Expand Down

0 comments on commit 54bf87f

Please sign in to comment.