0
1
Fork 0

fix: add missing newline to print

This commit is contained in:
myrqs 2023-05-04 19:52:51 +02:00
parent a8b2cfa7e9
commit 01d0cdbcc8
1 changed files with 1 additions and 1 deletions

View File

@ -139,7 +139,7 @@ func createOrGetRelease(ctx *gha.GitHubContext, c *gitea.Client, owner, repo str
if resp.StatusCode != 404 { if resp.StatusCode != 404 {
return nil, errMessage return nil, errMessage
} }
fmt.Printf("%s trying to create it", errMessage) fmt.Printf("%s trying to create it\n", errMessage)
// Create the release // Create the release
release, _, err = c.CreateRelease(owner, repo, opts) release, _, err = c.CreateRelease(owner, repo, opts)
if err != nil { if err != nil {