blob: f246184778b62f2949447cca72c2f91b6b357d80 [file] [log] [blame]
// +build windows
package binfmt_misc
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")
}