fix: change bad artifact validation in bsu builder

pull/7459/head
Marin Salinas 7 years ago committed by Megan Marsh
parent d10f87f815
commit 1b7c56f73d

@ -204,7 +204,7 @@ func (b *Builder) Run(ctx context.Context, ui packer.Ui, hook packer.Hook) (pack
}
//Build the artifact
if omis, ok := state.GetOk("omis"); !ok {
if omis, ok := state.GetOk("omis"); ok {
// Build the artifact and return it
artifact := &osccommon.Artifact{
Omis: omis.(map[string]string),

Loading…
Cancel
Save