summaryrefslogtreecommitdiff
path: root/cmd/podman/README.md
diff options
context:
space:
mode:
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"
)