Skip to content

Commit

Permalink
Output to stdout, not stderr
Browse files Browse the repository at this point in the history
  • Loading branch information
smowton committed Aug 20, 2024
1 parent 8b9617c commit 15b5bcc
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
package main

import (
"fmt"

"github.com/github/codeql-go/extractor/configurebaseline"
)

Expand All @@ -9,6 +11,6 @@ func main() {
if err != nil {
panic(err)
} else {
println(string(jsonResult))
fmt.Println(string(jsonResult))
}
}

0 comments on commit 15b5bcc

Please sign in to comment.