2021-10-28 11:26:43 +00:00
|
|
|
//go:build windows
|
2019-04-03 07:23:44 +00:00
|
|
|
// +build windows
|
|
|
|
|
2020-07-18 16:17:49 +00:00
|
|
|
package archutil
|
2019-04-03 07:23:44 +00:00
|
|
|
|
|
|
|
import (
|
2020-04-27 13:44:57 +00:00
|
|
|
"errors"
|
2019-04-03 07:23:44 +00:00
|
|
|
"os/exec"
|
|
|
|
)
|
|
|
|
|
|
|
|
func withChroot(cmd *exec.Cmd, dir string) {
|
|
|
|
}
|
2020-04-27 13:44:57 +00:00
|
|
|
|
|
|
|
func check(bin string) error {
|
|
|
|
return errors.New("binfmt is not supported on Windows")
|
|
|
|
}
|