Files
podman/pkg/machine/fedora_unix.go
Oleksandr Redko 2a2d0b0e18 chore: delete obsolete // +build lines
Signed-off-by: Oleksandr Redko <Oleksandr_Redko@epam.com>
2024-01-04 11:53:38 +02:00

12 lines
175 B
Go

//go:build darwin || dragonfly || freebsd || linux || netbsd || openbsd
package machine
import (
"runtime"
)
func DetermineMachineArch() string {
return runtime.GOARCH
}