We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bc2102b commit 30ef8eaCopy full SHA for 30ef8ea
cmd/oci-image-tool/main.go
@@ -19,6 +19,7 @@ import (
19
"os"
20
21
"github.com/sirupsen/logrus"
22
+ "github.com/opencontainers/image-tools/image"
23
"github.com/opencontainers/image-tools/version"
24
"github.com/urfave/cli"
25
)
@@ -54,6 +55,11 @@ func main() {
54
55
createCommand,
56
}
57
58
+ cli.AppHelpTemplate = fmt.Sprintf(`%sMore information:
59
+ references %s
60
+ bug report %s
61
+ `, cli.AppHelpTemplate, image.SpecURL, image.IssuesURL)
62
+
63
if err := app.Run(os.Args); err != nil {
64
logrus.Fatal(err)
65
0 commit comments