Add realChroot for non linux/windows
3029e765e2
broke compilation on
non-Linux/Windows systems.
This change fixes that.
Signed-off-by: Brian Goff <cpuguy83@gmail.com>
This commit is contained in:
parent
b2b2de3699
commit
34d5b8867f
1 changed files with 4 additions and 0 deletions
|
@ -10,3 +10,7 @@ func chroot(path string) error {
|
|||
}
|
||||
return unix.Chdir("/")
|
||||
}
|
||||
|
||||
func realChroot(path string) error {
|
||||
return chroot(path)
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue