Merge pull request #38372 from FabianKramm/fix-darwin-compile

Fix unmount redeclaration on darwin in github.com/docker/docker/pkg/m…
This commit is contained in:
Sebastiaan van Stijn 2018-12-19 13:26:43 +01:00 committed by GitHub
commit d1117e8e10
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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")
}