podman-build/cmd/podman/compose_machine_unsupported.go
2025-10-11 12:30:35 +09:00

13 lines
239 B
Go

//go:build !(amd64 || arm64)
package main
import (
"errors"
"net/url"
)
func getMachineConn(connection string, parsedConnection *url.URL) (string, error) {
return "", errors.New("podman machine not supported on this architecture")
}