You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/script/ptl-tool.py
+5Lines changed: 5 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -398,6 +398,7 @@ def main():
398
398
else:
399
399
argv=sys.argv[1:]
400
400
parser.add_argument('--branch', dest='branch', action='store', default=default_branch, help='branch to create ("HEAD" leaves HEAD detached; i.e. no branch is made)')
parser.add_argument('--debug-build', dest='debug_build', action='store_true', help='append -debug to branch name prompting ceph-build to build with CMAKE_BUILD_TYPE=Debug')
402
403
parser.add_argument('--merge-branch-name', dest='merge_branch_name', action='store', default=False, help='name of the branch for merge messages')
403
404
parser.add_argument('--base', dest='base', action='store', default=default_base, help='base for branch')
@@ -409,6 +410,10 @@ def main():
409
410
parser.add_argument('--stop-at-built', dest='stop_at_built', action='store_true', help='stop execution when branch is built')
410
411
parser.add_argument('prs', metavar="PR", type=int, nargs='*', help='Pull Requests to merge')
0 commit comments