vendor: update buildkit to f7bda278b7e2

Signed-off-by: Tonis Tiigi <tonistiigi@gmail.com>
This commit is contained in:
Tonis Tiigi
2024-07-02 22:15:15 -07:00
parent 4be2259719
commit f374f64d2f
85 changed files with 1105 additions and 1559 deletions

View File

@ -41,19 +41,22 @@ func WithSolveError(err error, subject IsSolve_Subject, inputIDs, mountIDs []str
return nil
}
var (
oe *OpError
op *pb.Op
oe *OpError
op *pb.Op
description map[string]string
)
if errors.As(err, &oe) {
op = oe.Op
description = oe.Description
}
return &SolveError{
Err: err,
Solve: Solve{
InputIDs: inputIDs,
MountIDs: mountIDs,
Op: op,
Subject: subject,
InputIDs: inputIDs,
MountIDs: mountIDs,
Op: op,
Subject: subject,
Description: description,
},
}
}