Output to stdout, not stderr

This commit is contained in:
Chris Smowton
2024-08-20 17:01:54 +01:00
parent 8b9617cd38
commit 15b5bcc67c

View File

@@ -1,6 +1,8 @@
package main
import (
"fmt"
"github.com/github/codeql-go/extractor/configurebaseline"
)
@@ -9,6 +11,6 @@ func main() {
if err != nil {
panic(err)
} else {
println(string(jsonResult))
fmt.Println(string(jsonResult))
}
}