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:
Fabian Kramm 2018-12-14 11:10:52 +01:00
parent f711f2bdc3
commit eea4977d02
2 changed files with 7 additions and 4 deletions

View File

@ -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")
}

View 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")
}