Browse Source

download zip archive of repos by default instead of submoduling.

Taylor Otwell 13 years ago
parent
commit
d9f3725afd
1 changed files with 1 additions and 1 deletions
  1. 1 1
      laravel/cli/tasks/bundle/providers/github.php

+ 1 - 1
laravel/cli/tasks/bundle/providers/github.php

@@ -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);
 	}