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

Add --no-verify to git commit call for arc patch

Summary: I can't find an analogous flag for hg.

Test Plan: I don't have any precommit hooks set up on my machine so I can't test this easily, but I think this seems pretty harmless?

Reviewers: epriestley, #blessed_reviewers

Reviewed By: epriestley, #blessed_reviewers

Subscribers: epriestley, Korvin

Differential Revision: https://secure.phabricator.com/D9523
This commit is contained in:
Ben Alpert 2014-06-16 11:39:31 -07:00 committed by epriestley
parent 36698b92af
commit ee3baade6e

View file

@ -701,7 +701,7 @@ EOTEXT
$commit_message = $this->getCommitMessage($bundle);
$future = $repository_api->execFutureLocal(
'commit -a %C -F -',
'commit -a %C -F - --no-verify',
$author_cmd);
$future->write($commit_message);
$future->resolvex();