build: fix setting iidfile with multi-node push

Signed-off-by: Tonis Tiigi <tonistiigi@gmail.com>
pull/826/head
Tonis Tiigi 3 years ago
parent 7f0e37531c
commit 02d29e0af5

@ -732,7 +732,9 @@ func Build(ctx context.Context, drivers []DriverInfo, opt map[string]Options, do
return err
}
if opt.ImageIDFile != "" {
return ioutil.WriteFile(opt.ImageIDFile, []byte(desc.Digest), 0644)
if err := ioutil.WriteFile(opt.ImageIDFile, []byte(desc.Digest), 0644); err != nil {
return err
}
}
itpush := imagetools.New(imagetools.Opt{

Loading…
Cancel
Save