fix: change bad artifact validation in bsu builder
This commit is contained in:
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…
Reference in New Issue