Files
troubleshoot/cmd/collect/cli/chroot_windows.go

10 lines
149 B
Go

package cli
import (
"errors"
)
func checkAndSetChroot(newroot string) error {
return errors.New("chroot is only implimented in linux/darwin")
}