Skip to content

Commit

Permalink
Fix formatting in redhat
Browse files Browse the repository at this point in the history
  • Loading branch information
zachhuff386 committed May 31, 2018
1 parent bb9a25d commit 613d126
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion redhat/redhat.go
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ func (r *Redhat) createSpec(files []string) (err error) {
data += fmt.Sprintf("Name: %s\n", r.Pack.PkgName)
data += fmt.Sprintf("Summary: %s\n", r.Pack.PkgDesc)
data += fmt.Sprintf("Version: %s\n", r.Pack.PkgVer)
data += fmt.Sprintf("Release: %s", r.Pack.PkgRel) + release + "\n"
data += fmt.Sprintf("Release: %s%s\n", r.Pack.PkgRel, release)
data += fmt.Sprintf("Group: %s\n", ConvertSection(r.Pack.Section))
data += fmt.Sprintf("URL: %s\n", r.Pack.Url)
data += fmt.Sprintf("License: %s\n", r.Pack.License)
Expand Down

0 comments on commit 613d126

Please sign in to comment.