Remove username from git-llvm script, erroneously added in 366197

llvm-svn: 366198
This commit is contained in:
Sam McCall 2019-07-16 10:14:53 +00:00
parent eb72138340
commit 1781c28a0d
1 changed files with 1 additions and 1 deletions

View File

@ -372,7 +372,7 @@ def svn_push_one_rev(svn_repo, rev, git_to_svn_mapping, dry_run):
# Now we're ready to commit.
commit_msg = git('show', '--pretty=%B', '--quiet', rev)
if not dry_run:
commit_args = ['commit', '-m', commit_msg, '--username', 'ktkachov']
commit_args = ['commit', '-m', commit_msg]
if '--force-interactive' in svn(svn_repo, 'commit', '--help'):
commit_args.append('--force-interactive')
log(svn(svn_repo, *commit_args))