Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Refactor internal API for git commands, use meaningful messages instead of "Internal Server Error" #23687

Merged
merged 11 commits into from
Mar 29, 2023
4 changes: 2 additions & 2 deletions build/generate-emoji.go
Original file line number Diff line number Diff line change
Expand Up @@ -60,13 +60,13 @@ func main() {
// generate data
buf, err := generate()
if err != nil {
log.Fatal(err)
log.Fatalf("generate err: %v", err)
}

// write
err = os.WriteFile(*flagOut, buf, 0o644)
if err != nil {
log.Fatal(err)
log.Fatalf("WriteFile err: %v", err)
}
}

Expand Down
Loading