Chore: Remove %w and err from print line (#60215)

Remove %w and err
This commit is contained in:
Dimitris Sotirakis 2022-12-13 10:56:34 +00:00 committed by GitHub
parent e97b43cd58
commit 6d339d94dc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -21,7 +21,7 @@ func GenerateMetadata(c *cli.Context) (config.Metadata, error) {
tag, ok := os.LookupEnv("DRONE_TAG")
if !ok {
fmt.Println("DRONE_TAG envvar not present, %w", err)
fmt.Println("DRONE_TAG envvar not present")
}
var releaseMode config.ReleaseMode