7 lines
108 B
Go
7 lines
108 B
Go
|
package chrootarchive
|
||
|
|
||
|
// chroot is not supported by Windows
|
||
|
func chroot(path string) error {
|
||
|
return nil
|
||
|
}
|