mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
Windows: Fix mountinfo
Signed-off-by: John Howard <jhoward@microsoft.com>
This commit is contained in:
parent
adc6ed5a10
commit
bb68b666c5
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
pkg/mount/mountinfo_windows.go
Normal file
6
pkg/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