removed git clone depth restriction to keep full git repositories, enabling local work on framework

This commit is contained in:
David Alexander 2016-03-21 21:03:10 -06:00
parent 42f8caea66
commit d102b06514
1 changed files with 1 additions and 1 deletions

View File

@ -94,7 +94,7 @@ class RefreshMarkdownTask extends BuildTask
$this->printLine("cloning " . $remote . "/" . $branch);
chdir("{$path}/src");
exec("git clone -q https://github.com/{$remote}.git {$folder}_{$branch} --depth 1 --branch {$branch} --single-branch");
exec("git clone -q https://github.com/{$remote}.git {$folder}_{$branch} --branch {$branch}");
chdir("{$path}/src/{$folder}_{$branch}");
}