mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
Fix unmount redeclaration on darwin in github.com/docker/docker/pkg/mount
Signed-off-by: Fabian Kramm <kramm@covexo.com>
This commit is contained in:
parent
f711f2bdc3
commit
eea4977d02
2 changed files with 7 additions and 4 deletions
|
@ -5,7 +5,3 @@ package mount // import "github.com/docker/docker/pkg/mount"
|
|||
func mount(device, target, mType string, flag uintptr, data string) error {
|
||||
panic("Not implemented")
|
||||
}
|
||||
|
||||
func unmount(target string, flag int) error {
|
||||
panic("Not implemented")
|
||||
}
|
||||
|
|
7
pkg/mount/unmount_unsupported.go
Normal file
7
pkg/mount/unmount_unsupported.go
Normal file
|
@ -0,0 +1,7 @@
|
|||
// +build windows
|
||||
|
||||
package mount // import "github.com/docker/docker/pkg/mount"
|
||||
|
||||
func unmount(target string, flag int) error {
|
||||
panic("Not implemented")
|
||||
}
|
Loading…
Reference in a new issue