diff --git a/change.log b/change.log index 712823c..e2327b6 100644 --- a/change.log +++ b/change.log @@ -1,4 +1,14 @@ +UNRELEASED + + * choco: ensure tags always contains admin value to pass chocolatey validation + + - mh-cbon <mh-cbon@users.noreply.github.com> + +-- mh-cbon <mh-cbon@users.noreply.github.com>; Fri, 29 Jul 2016 20:06:03 +0200 + + + 0.0.37 * Fix chocolatey package generation: Tags should not contain 'chocolatey' as a tag. @@ -408,5 +418,3 @@ - mh-cbon <mh-cbon@users.noreply.github.com> -- mh-cbon <mh-cbon@users.noreply.github.com>; Sat, 25 Jun 2016 19:55:56 +0200 - - diff --git a/manifest/index.go b/manifest/index.go index 5d07edf..73e9e45 100644 --- a/manifest/index.go +++ b/manifest/index.go @@ -239,7 +239,7 @@ func (wixFile *WixManifest) Normalize() error { if wixFile.Choco.Description == "" { wixFile.Choco.Description = wixFile.Product } - wixFile.Choco.Tags += " admin" // required to pass chocolatey validation.. + wixFile.Choco.Tags += " admin" // required to pass chocolatey validation.. return nil }