automation-tests/cmd/podman/registry/config_tunnel.go

15 lines
180 B
Go

// +build remote
package registry
import (
"os"
)
func init() {
abiSupport = false
// Enforce that podman-remote == podman --remote
os.Args = append(os.Args, "--remote")
}