Skip to content

Commit

Permalink
Fix 'jf rt curl' help option
Browse files Browse the repository at this point in the history
Signed-off-by: Michael Sverdlov <[email protected]>
  • Loading branch information
sverdlov93 committed Jan 9, 2024
1 parent 0260c70 commit 91b8c95
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions artifactory/cli.go
Original file line number Diff line number Diff line change
Expand Up @@ -1823,6 +1823,9 @@ func gitLfsCleanCmd(c *cli.Context) error {
}

func curlCmd(c *cli.Context) error {
if show, err := cliutils.ShowCmdHelpIfNeeded(c, c.Args()); show || err != nil {
return err
}
if c.NArg() < 1 {
return cliutils.WrongNumberOfArgumentsHandler(c)
}
Expand Down

0 comments on commit 91b8c95

Please sign in to comment.