Skip to content

Commit a9aa900

Browse files
fix typo
Signed-off-by: Darshan Kumar <itsdarshankumar@gmail.com>
1 parent a58b03e commit a9aa900

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

internal/commands/extension_new.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ type ExtensionNewFlags struct {
2020
func ExtensionNew(logger logging.Logger) *cobra.Command {
2121
cmd := &cobra.Command{
2222
Use: "new <id>",
23-
Short: "Creates basic scaffolding of an extension.",
23+
Short: "Creates basic scaffolding of an extension",
2424
Args: cobra.MatchAll(cobra.ExactArgs(1), cobra.OnlyValidArgs),
2525
Example: "pack extension new <example-extension>",
2626
RunE: logError(logger, func(cmd *cobra.Command, args []string) error {

internal/commands/extension_package.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ type ExtensionPackageFlags struct {
2323
func ExtensionPackage(logger logging.Logger, cfg config.Config) *cobra.Command {
2424
cmd := &cobra.Command{
2525
Use: "package <name> --config <config-path>",
26-
Short: "Package an extension in OCI format.",
26+
Short: "Package an extension in OCI format",
2727
Args: cobra.MatchAll(cobra.ExactArgs(1), cobra.OnlyValidArgs),
2828
RunE: logError(logger, func(cmd *cobra.Command, args []string) error {
2929
// logic will be added here

0 commit comments

Comments
 (0)