with err exit

This commit is contained in:
2022-10-31 00:35:40 +01:00
parent cb789bfa2e
commit e9e5d1e958

View File

@@ -82,7 +82,12 @@ func (p *Pipeline) WithGolangBin(opts *GolangBinOpts) *Pipeline {
c = c.Exec(dagger.ContainerExecOpts{
Args: []string{"mkdir", "-p", binpath},
})
c, err := container.MountFileFromLoaded(ctx, c, bin, usrbin)
_, err := c.ExitCode(ctx)
if err != nil {
return err
}
c, err = container.MountFileFromLoaded(ctx, c, bin, usrbin)
if err != nil {
return err
}