mirror of https://github.com/k3s-io/k3s
Merge pull request #35566 from rootfs/fix-mount
Automatic merge from submit-queue add IsNotMountPoint() to mount_unsupported.go fix the cross build issuepull/6/head
commit
20270531c2
|
@ -57,3 +57,7 @@ func (mounter *SafeFormatAndMount) formatAndMount(source string, target string,
|
|||
func (mounter *SafeFormatAndMount) diskLooksUnformatted(disk string) (bool, error) {
|
||||
return true, nil
|
||||
}
|
||||
|
||||
func IsNotMountPoint(file string) (bool, error) {
|
||||
return true, nil
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue