blob: 4f9f511637cc7db173239d0e4ff168e9172e2b6a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
// +build remote
package registry
import (
"os"
)
func init() {
abiSupport = false
// Enforce that podman-remote == podman --remote
os.Args = append(os.Args, "--remote")
}
|