mirror of
https://github.com/containers/skopeo.git
synced 2025-09-27 21:16:23 +00:00
Bump github.com/containers/storage from 1.41.0 to 1.42.0
Bumps [github.com/containers/storage](https://github.com/containers/storage) from 1.41.0 to 1.42.0. - [Release notes](https://github.com/containers/storage/releases) - [Changelog](https://github.com/containers/storage/blob/main/docs/containers-storage-changes.md) - [Commits](https://github.com/containers/storage/compare/v1.41.0...v1.42.0) --- updated-dependencies: - dependency-name: github.com/containers/storage dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
This commit is contained in:
4
vendor/github.com/containers/storage/drivers/overlayutils/overlayutils.go
generated
vendored
4
vendor/github.com/containers/storage/drivers/overlayutils/overlayutils.go
generated
vendored
@@ -1,3 +1,4 @@
|
||||
//go:build linux
|
||||
// +build linux
|
||||
|
||||
package overlayutils
|
||||
@@ -6,7 +7,6 @@ import (
|
||||
"fmt"
|
||||
|
||||
graphdriver "github.com/containers/storage/drivers"
|
||||
"github.com/pkg/errors"
|
||||
)
|
||||
|
||||
// ErrDTypeNotSupported denotes that the backing filesystem doesn't support d_type.
|
||||
@@ -16,5 +16,5 @@ func ErrDTypeNotSupported(driver, backingFs string) error {
|
||||
msg += " Reformat the filesystem with ftype=1 to enable d_type support."
|
||||
}
|
||||
msg += " Running without d_type is not supported."
|
||||
return errors.Wrap(graphdriver.ErrNotSupported, msg)
|
||||
return fmt.Errorf("%s: %w", msg, graphdriver.ErrNotSupported)
|
||||
}
|
||||
|
Reference in New Issue
Block a user