summaryrefslogtreecommitdiff
path: root/cmd/podman/README.md
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2020-07-28 10:12:55 -0400
committerGitHub <noreply@github.com>2020-07-28 10:12:55 -0400
commit288ebec6e737c105fa0ef43412de4e0a8997feb9 (patch)
tree57eb1b59866fd63b7618b885fcbfb1e614709cf4 /cmd/podman/README.md
parent6ed9868a34a875359852a910c23248946de59d20 (diff)
parenta5e37ad2805b2594339e0d5d41da0e0cc37e4f4a (diff)
downloadpodman-288ebec6e737c105fa0ef43412de4e0a8997feb9.tar.gz
podman-288ebec6e737c105fa0ef43412de4e0a8997feb9.tar.bz2
podman-288ebec6e737c105fa0ef43412de4e0a8997feb9.zip
Merge pull request #6909 from rhatdan/podman
Switch all references to github.com/containers/libpod -> podman
Diffstat (limited to 'cmd/podman/README.md')
-rw-r--r--cmd/podman/README.md20
1 files changed, 10 insertions, 10 deletions
diff --git a/cmd/podman/README.md b/cmd/podman/README.md
index da92d0216..260c9bcfc 100644
--- a/cmd/podman/README.md
+++ b/cmd/podman/README.md
@@ -12,16 +12,16 @@ See items below for details on building, installing, contributing to Podman:
## Adding a new command `podman manifest`
```shell script
-$ mkdir -p $GOPATH/src/github.com/containers/libpod/cmd/podmanV2/manifests
+$ mkdir -p $GOPATH/src/github.com/containers/podman/cmd/podmanV2/manifests
```
-Create the file ```$GOPATH/src/github.com/containers/libpod/cmd/podmanV2/manifests/manifest.go```
+Create the file ```$GOPATH/src/github.com/containers/podman/cmd/podmanV2/manifests/manifest.go```
```go
package manifests
import (
- "github.com/containers/libpod/cmd/podman/registry"
- "github.com/containers/libpod/cmd/podman/validate"
- "github.com/containers/libpod/pkg/domain/entities"
+ "github.com/containers/podman/cmd/podman/registry"
+ "github.com/containers/podman/cmd/podman/validate"
+ "github.com/containers/podman/pkg/domain/entities"
"github.com/spf13/cobra"
)
@@ -47,21 +47,21 @@ func init() {
})
}
```
-To "wire" in the `manifest` command, edit the file ```$GOPATH/src/github.com/containers/libpod/cmd/podmanV2/main.go``` to add:
+To "wire" in the `manifest` command, edit the file ```$GOPATH/src/github.com/containers/podman/cmd/podmanV2/main.go``` to add:
```go
package main
-import _ "github.com/containers/libpod/cmd/podman/manifests"
+import _ "github.com/containers/podman/cmd/podman/manifests"
```
## Adding a new sub command `podman manifests list`
-Create the file ```$GOPATH/src/github.com/containers/libpod/cmd/podmanV2/manifests/inspect.go```
+Create the file ```$GOPATH/src/github.com/containers/podman/cmd/podmanV2/manifests/inspect.go```
```go
package manifests
import (
- "github.com/containers/libpod/cmd/podman/registry"
- "github.com/containers/libpod/pkg/domain/entities"
+ "github.com/containers/podman/cmd/podman/registry"
+ "github.com/containers/podman/pkg/domain/entities"
"github.com/spf13/cobra"
)