Windows: Fix mountinfo
Signed-off-by: John Howard <jhoward@microsoft.com>
This commit is contained in:
parent
3e73c9ab2c
commit
6c3ae0fce3
2 changed files with 7 additions and 1 deletions
|
@ -1,4 +1,4 @@
|
|||
// +build !linux,!freebsd freebsd,!cgo
|
||||
// +build !windows,!linux,!freebsd freebsd,!cgo
|
||||
|
||||
package mount
|
||||
|
||||
|
|
6
mount/mountinfo_windows.go
Normal file
6
mount/mountinfo_windows.go
Normal file
|
@ -0,0 +1,6 @@
|
|||
package mount
|
||||
|
||||
func parseMountTable() ([]*Info, error) {
|
||||
// Do NOT return an error!
|
||||
return nil, nil
|
||||
}
|
Loading…
Reference in a new issue