[CHORE] Remove println

- It's not recommended to use it per the documentation: https://pkg.go.dev/builtin#println.
This commit is contained in:
Gusted 2024-04-12 13:36:31 +02:00
parent c3aed7cb69
commit 706846b628
No known key found for this signature in database
GPG key ID: FD821B732837125F
4 changed files with 9 additions and 24 deletions

View file

@ -18,8 +18,8 @@ import (
func main() {
if len(os.Args) != 2 {
println("usage: backport-locales <to-ref>")
println("eg: backport-locales release/v1.19")
fmt.Println("usage: backport-locales <to-ref>")
fmt.Println("eg: backport-locales release/v1.19")
os.Exit(1)
}