Skip to content

Commit

Permalink
Remove legacy repo from cloning/update scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
ericpoe committed Mar 18, 2019
1 parent eff916b commit 24935f3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion scripts/cloneRepository.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<?php
declare(strict_types=1);

$repositoryToClone = ['joindin-legacy', 'joindin-api', 'joindin-web2'];
$repositoryToClone = ['joindin-api', 'joindin-web2'];

$path = realpath(dirname(__DIR__) . DIRECTORY_SEPARATOR);
chdir($path);
Expand Down
2 changes: 1 addition & 1 deletion scripts/updateRepositories.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<?php
declare(strict_types=1);

$repositoryToUpdate = ['joindin-web2', 'joindin-api', 'joindin-legacy'];
$repositoryToUpdate = ['joindin-api', 'joindin-web2'];

$path = realpath(dirname(__DIR__) . DIRECTORY_SEPARATOR);
chdir($path);
Expand Down

0 comments on commit 24935f3

Please sign in to comment.