mirror of
https://chromium.googlesource.com/chromium/tools/depot_tools.git
synced 2026-01-11 18:51:29 +00:00
Fix bug in git_squash_branch.py.
main takes args starting from 1, not 0. TBR=agable@chromium.org BUG=261738 Review URL: https://codereview.chromium.org/212223002 git-svn-id: svn://svn.chromium.org/chrome/trunk/tools/depot_tools@259521 0039d316-1c4b-4281-b951-d872f2087c98
This commit is contained in:
@@ -17,4 +17,4 @@ def main(args):
|
||||
squash_current_branch(opts.message)
|
||||
|
||||
if __name__ == '__main__':
|
||||
sys.exit(main(sys.argv))
|
||||
sys.exit(main(sys.argv[1:]))
|
||||
|
||||
Reference in New Issue
Block a user