download zip archive of repos by default instead of submoduling.

This commit is contained in:
Taylor Otwell 2012-02-03 13:44:26 -06:00
parent e370772cf9
commit d9f3725afd
1 changed files with 1 additions and 1 deletions

View File

@ -12,7 +12,7 @@ class Github extends Provider {
*/
public function install($bundle)
{
$method = (Request::server('cli.zip')) ? 'zipball' : 'submodule';
$method = (Request::server('cli.git')) ? 'submodule' : 'zipball';
$this->$method($bundle);
}