Add StargzSupported stub for Windows

Signed-off-by: Brad Davidson <brad.davidson@rancher.com>
This commit is contained in:
Brad Davidson 2021-09-15 02:16:48 -07:00 committed by Brad Davidson
parent e732517712
commit 85e11c47d1

View File

@ -14,3 +14,7 @@ func OverlaySupported(root string) error {
func FuseoverlayfsSupported(root string) error {
return errors.Wrapf(util2.ErrUnsupportedPlatform, "fuse-overlayfs is not supported")
}
func StargzSupported(root string) error {
return errors.Wrapf(util2.ErrUnsupportedPlatform, "stargz is not supported")
}