diff --git a/composer.json b/composer.json index 3c1b74edb..8f850c835 100644 --- a/composer.json +++ b/composer.json @@ -1,5 +1,8 @@ { "name": "sd/arcanist", + "support": { + "issues": "https://github.com/sedmsk/arcanist/issues" + }, "authors": [ { "name": "Igor Finagin", diff --git a/src/land/ArcanistGitLandEngine.php b/src/land/ArcanistGitLandEngine.php index 6b0a38cdc..7b2768767 100644 --- a/src/land/ArcanistGitLandEngine.php +++ b/src/land/ArcanistGitLandEngine.php @@ -35,7 +35,6 @@ public function execute() { $this->reconcileLocalState(); $api = $this->getRepositoryAPI(); - $api->execxLocal('submodule update --init --recursive'); if ($this->getShouldKeep()) { echo tsprintf( @@ -527,7 +526,6 @@ private function restoreLocalState() { $api->execxLocal('checkout %s --', $this->localRef); $api->execxLocal('reset --hard %s --', $this->localCommit); - $api->execxLocal('submodule update --init --recursive'); $this->restoreWhenDestroyed = false; }