automation-tests/cmd/podman/compose_machine_unsupported.go

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")
}