Skip to content

Commit

Permalink
Fix release script ownership check command name. (#7204)
Browse files Browse the repository at this point in the history
### Problem

The `check-my-ownership` script command name went out of sync with actual usages, which broke running the release script.

### Solution

Fix parser's command name.

### Result

Releases work.
  • Loading branch information
Stu Hood authored Feb 2, 2019
1 parent 44d91e9 commit 434533a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/python/pants/releases/packages.py
Original file line number Diff line number Diff line change
Expand Up @@ -250,8 +250,8 @@ def _create_parser():
parser_list.add_argument("--with-packages", action="store_true")
# list-owners
subparsers.add_parser("list-owners")
# check-ownership
subparsers.add_parser("check-ownership")
# check-my-ownership
subparsers.add_parser("check-my-ownership")
# build_and_print
parser_build_and_print = subparsers.add_parser("build_and_print")
parser_build_and_print.add_argument("version")
Expand Down

0 comments on commit 434533a

Please sign in to comment.