mirror of
https://github.com/github/codeql.git
synced 2026-01-28 22:02:57 +01:00
Include newlines in messages printed by go-gen-dbscheme.
This commit is contained in:
@@ -22,10 +22,10 @@ func main() {
|
||||
|
||||
f, err := os.Create(out)
|
||||
if err != nil {
|
||||
fmt.Fprintf(os.Stderr, "Unable to open file %s for writing.", out)
|
||||
fmt.Fprintf(os.Stderr, "Unable to open file %s for writing.\n", out)
|
||||
os.Exit(1)
|
||||
}
|
||||
dbscheme.PrintDbScheme(f)
|
||||
f.Close()
|
||||
fmt.Printf("Dbscheme written to file %s.", out)
|
||||
fmt.Printf("Dbscheme written to file %s.\n", out)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user