We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d92f7d6 commit 1ea91fbCopy full SHA for 1ea91fb
1 file changed
src/Command/SyncCommand.php
@@ -200,15 +200,15 @@ private function copyDependabotConfig(): void
200
*/
201
private function addRepositoryWikiGitSubmodule(): void
202
{
203
- $repositoryUrl = $this->getGitRepositoryUrl();
204
-
205
- $wikiRepoUrl = str_replace('.git', '.wiki.git', $repositoryUrl);
206
$wikiSubmodulePath = parent::getConfigFile('.github/wiki', true);
207
208
if ($this->filesystem->exists($wikiSubmodulePath)) {
209
return;
210
}
211
+ $repositoryUrl = $this->getGitRepositoryUrl();
+ $wikiRepoUrl = str_replace('.git', '.wiki.git', $repositoryUrl);
+
212
$process = new Process([
213
'git',
214
'submodule',
0 commit comments