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

Don't connect to Conduit in arc feature name

Summary: There's no need for having an Internet connection in creating a branch.

Test Plan:
  $ arc feature name # with disabled Internet
  $ arc feature
  [cURL/6] (https://secure.phabricator.com/api/conduit.connect)

Reviewers: epriestley

Reviewed By: epriestley

CC: aran, Korvin

Differential Revision: https://secure.phabricator.com/D5430
This commit is contained in:
Jakub Vrana 2013-03-22 17:33:07 -07:00
parent ba78000b38
commit 50b4f0af65

View file

@ -48,7 +48,7 @@ EOTEXT
}
public function requiresAuthentication() {
return true;
return !$this->getArgument('names');
}