Skip to content

Commit

Permalink
Merge pull request #2486 from carapace-sh/git-unpack-file
Browse files Browse the repository at this point in the history
git: unpack-file
  • Loading branch information
rsteube authored Aug 15, 2024
2 parents da21659 + 99a4e5b commit a1476f3
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,15 @@ import (
"github.com/spf13/cobra"
)

var unpack_fileCmd = &cobra.Command{
var unpackFileCmd = &cobra.Command{
Use: "unpack-file",
Short: "Creates a temporary file with a blob's contents",
Run: func(cmd *cobra.Command, args []string) {},
GroupID: groups[group_low_level_interrogator].ID,
}

func init() {
carapace.Gen(unpack_fileCmd).Standalone()
carapace.Gen(unpackFileCmd).Standalone()

rootCmd.AddCommand(unpack_fileCmd)
rootCmd.AddCommand(unpackFileCmd)
}

0 comments on commit a1476f3

Please sign in to comment.