Revert "null builder: say that we are returnin the ID value"

This reverts commit 8e923977f055e9662cc9fcc78a843e0388f47895.
This commit is contained in:
Adrien Delorme 2020-07-07 11:46:43 +02:00
parent d84d956e36
commit 12c9959db2

View File

@ -25,7 +25,7 @@ func (b *Builder) Prepare(raws ...interface{}) ([]string, []string, error) {
return nil, warnings, errs
}
return []string{"ID"}, warnings, nil
return nil, warnings, nil
}
func (b *Builder) Run(ctx context.Context, ui packer.Ui, hook packer.Hook) (packer.Artifact, error) {