Merge pull request #39462 from cpuguy83/chroot_unsupported

Add realChroot for non linux/windows
This commit is contained in:
Sebastiaan van Stijn 2019-07-04 15:55:55 +02:00 committed by GitHub
commit 8bf02823d8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -10,3 +10,7 @@ func chroot(path string) error {
}
return unix.Chdir("/")
}
func realChroot(path string) error {
return chroot(path)
}