Skip to content

Commit

Permalink
cmd/rm: Update help text
Browse files Browse the repository at this point in the history
  • Loading branch information
pg9182 committed Apr 14, 2024
1 parent 2e49b6e commit d22670d
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion cmd/rm/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,11 @@ var Command = &cobra.Command{
Use: "rm vpk_path file...",
Aliases: []string{"remove", "delete", "del"},
Short: "Delete files or directories from a VPK",
Args: cobra.MinimumNArgs(2),
Long: `Delete files or directories from a VPK
Does not remove the unused chunks; use the gc command to do that afterwards.
`,
Args: cobra.MinimumNArgs(2),
Run: func(cmd *cobra.Command, args []string) {
Flags.Files = args[1:]
main()
Expand Down

0 comments on commit d22670d

Please sign in to comment.