Skip to content

Commit

Permalink
add prep
Browse files Browse the repository at this point in the history
  • Loading branch information
fedya committed Nov 29, 2021
1 parent 269190c commit 3e3c28d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion abf.py
Original file line number Diff line number Diff line change
Expand Up @@ -283,7 +283,7 @@ def parse_command_line():
# rpmbuild
subparser = subparsers.add_parser('rpmbuild', help=_('Build a project locally using rpmbuild.'), epilog=_('No checkouts will be made,'
'the current git repository state will be used'))
subparser.add_argument('-b', '--build', action='store', choices=['b', 's', 'a'], default='a', help=_('Build src.rpm (s), rpm (b) or both (a)'))
subparser.add_argument('-b', '--build', action='store', choices=['b', 's', 'a', 'p'], default='a', help=_('Build src.rpm (s), rpm (b), both (a) or only %prep(p)'))
subparser.add_argument('-s', '--save-rpmbuild-folder', action='store_true', help=_('Copy the whole rpmbuild folder into the current folder after the build'))
subparser.set_defaults(func=localbuild_rpmbuild)

Expand Down

0 comments on commit 3e3c28d

Please sign in to comment.