16 lines
208 B
Go
16 lines
208 B
Go
|
// +build windows
|
||
|
|
||
|
package archutil
|
||
|
|
||
|
import (
|
||
|
"errors"
|
||
|
"os/exec"
|
||
|
)
|
||
|
|
||
|
func withChroot(cmd *exec.Cmd, dir string) {
|
||
|
}
|
||
|
|
||
|
func check(bin string) error {
|
||
|
return errors.New("binfmt is not supported on Windows")
|
||
|
}
|