Initial commit
This commit is contained in:
11
vendor/github.com/hyperhq/hypercli/pkg/system/syscall_unix.go
generated
vendored
Normal file
11
vendor/github.com/hyperhq/hypercli/pkg/system/syscall_unix.go
generated
vendored
Normal file
@@ -0,0 +1,11 @@
|
||||
// +build linux freebsd
|
||||
|
||||
package system
|
||||
|
||||
import "syscall"
|
||||
|
||||
// Unmount is a platform-specific helper function to call
|
||||
// the unmount syscall.
|
||||
func Unmount(dest string) error {
|
||||
return syscall.Unmount(dest, 0)
|
||||
}
|
||||
Reference in New Issue
Block a user