mirror of
https://we.phorge.it/source/arcanist.git
synced 2024-11-25 16:22:42 +01:00
Quote author parameter
Summary: Fixes the exception: Exception Command 'git commit -a --author=Whatever Long Name <whatever@email.com> -F -' failed with error #1 Test Plan: Tested with full git name Reviewers: epriestley, aurelijus Reviewed By: epriestley CC: aran, Korvin Differential Revision: https://secure.phabricator.com/D3979
This commit is contained in:
parent
6c3418a0e8
commit
ecdb885236
1 changed files with 1 additions and 1 deletions
|
@ -717,7 +717,7 @@ EOTEXT
|
|||
$author = sprintf('%s <%s>',
|
||||
$address->getDisplayName(),
|
||||
$address->getAddress());
|
||||
$author_cmd = sprintf('--author=%s ', $author);
|
||||
$author_cmd = csprintf('--author=%s ', $author);
|
||||
}
|
||||
}
|
||||
$commit_message = $this->getCommitMessage($bundle);
|
||||
|
|
Loading…
Reference in a new issue