Skip to content

Commit

Permalink
cli: fix copr build --help output
Browse files Browse the repository at this point in the history
  • Loading branch information
praiskup committed Jan 11, 2024
1 parent e174d37 commit 02fbcf8
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions cli/copr_cli/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -1451,8 +1451,9 @@ def setup_parser():
# create the parser for the "build" (url/upload) command
parser_build = subparsers.add_parser("build", parents=[parser_build_parent],
help="Build packages to a specified copr")
parser_build.add_argument("pkgs", nargs="+",
help="filename of SRPM or URL of packages to build")
parser_build.add_argument(
"pkgs", nargs="+",
help="List of filenames or URLs for SRPMs or SPEC files to build packages")

parser_build.set_defaults(func="action_build")

Expand Down

0 comments on commit 02fbcf8

Please sign in to comment.