Browse Source

Use the public facing URL for fetching bundles stored on GitHub.

Signed-off-by: Jason Lewis <jason.lewis1991@gmail.com>
Jason Lewis 12 years ago
parent
commit
1559a6bbc8
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

@@ -11,7 +11,7 @@ class Github extends Provider {
 	 */
 	 */
 	public function install($bundle, $path)
 	public function install($bundle, $path)
 	{
 	{
-		$url = "http://nodeload.github.com/{$bundle['location']}/zipball/master";
+		$url = "http://github.com/{$bundle['location']}/zipball/master";
 
 
 		parent::zipball($url, $bundle, $path);
 		parent::zipball($url, $bundle, $path);
 	}
 	}