74bc9966e0
Signed-off-by: Alexander Morozov <lk4d4@docker.com> Upstream-commit: a20fea1823ccfb40d235607e8f7ce7ceff1b5afe Component: engine
8 lines
171 B
Go
8 lines
171 B
Go
package system
|
|
|
|
// Unmount is a platform-specific helper function to call
|
|
// the unmount syscall. Not supported on Windows
|
|
func Unmount(dest string) error {
|
|
return nil
|
|
}
|