blob: 18ec34dbae3632d9660fd168f3afdca23b7767cc [file] [log] [blame]
// +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")
}