1
0
Fork 0
mirror of https://we.phorge.it/source/arcanist.git synced 2024-11-10 00:42:40 +01:00

Use hgsprintf() when managing bookmarks in arc patch in mercurial

Summary: Fixes T4596. I couldn't immediately reproduce this, but the `hgsprintf()` version is clearly more correct.

Test Plan: Used `arc patch --trace` to examine hg commands.

Reviewers: btrahan, durham

Reviewed By: durham

Subscribers: aran, epriestley

Maniphest Tasks: T4596

Differential Revision: https://secure.phabricator.com/D8512
This commit is contained in:
epriestley 2014-03-12 19:43:48 -07:00
parent ac82dea3c9
commit 67239a08a5

View file

@ -320,12 +320,12 @@ EOTEXT
echo "Updating to the revision's base commit\n";
$repository_api->execPassthru(
'update %s',
$base_revision);
hgsprintf('%s', $base_revision));
}
$repository_api->execxLocal(
'bookmark %s',
$branch_name);
hgsprintf('%s', $branch_name));
echo phutil_console_format(
"Created and checked out bookmark %s.\n",