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.
2 parents f1c9348 + 8b52baf commit db21b15Copy full SHA for db21b15
cmd/oci-image-tool/main.go
@@ -18,6 +18,7 @@ import (
18
"fmt"
19
"os"
20
21
+ "github.com/opencontainers/image-tools/image"
22
"github.com/opencontainers/image-tools/version"
23
"github.com/sirupsen/logrus"
24
"github.com/urfave/cli"
@@ -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