diff --git a/laravel/cli/tasks/bundle/providers/github.php b/laravel/cli/tasks/bundle/providers/github.php index 9dd90da0..79e9df70 100644 --- a/laravel/cli/tasks/bundle/providers/github.php +++ b/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); }