🔧 Update modules

This commit is contained in:
Ettore Di Giacinto
2021-12-28 18:56:13 +01:00
parent 196cdc5cfc
commit 96aaf5235b
355 changed files with 10547 additions and 4907 deletions

View File

@@ -30,7 +30,7 @@ func Append(base v1.Image, paths ...string) (v1.Image, error) {
for _, path := range paths {
layer, err := getLayer(path)
if err != nil {
return nil, fmt.Errorf("reading layer %q: %v", path, err)
return nil, fmt.Errorf("reading layer %q: %w", path, err)
}
layers = append(layers, layer)