mirror of
https://github.com/containers/podman.git
synced 2025-07-28 10:52:35 +08:00

Small amount of refactoring to make WSL specific stuff into the WSL package where possible. This is in preparation for the possibility of adding more virtualization backends. [NO NEW TESTS NEEDED] Signed-off-by: Brent Baude <bbaude@redhat.com>
13 lines
231 B
Go
13 lines
231 B
Go
//go:build darwin || dragonfly || freebsd || linux || netbsd || openbsd
|
|
// +build darwin dragonfly freebsd linux netbsd openbsd
|
|
|
|
package machine
|
|
|
|
import (
|
|
"runtime"
|
|
)
|
|
|
|
func DetermineMachineArch() string {
|
|
return runtime.GOARCH
|
|
}
|