mirror of
https://github.com/replicatedhq/troubleshoot.git
synced 2026-04-15 07:16:34 +00:00
10 lines
149 B
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")
|
|
}
|