From 1559a6bbc8f14f6546d570c755227fa14866f935 Mon Sep 17 00:00:00 2001 From: Jason Lewis Date: Sun, 4 Nov 2012 15:43:03 +1100 Subject: [PATCH] Use the public facing URL for fetching bundles stored on GitHub. Signed-off-by: Jason Lewis --- laravel/cli/tasks/bundle/providers/github.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/laravel/cli/tasks/bundle/providers/github.php b/laravel/cli/tasks/bundle/providers/github.php index 7aa34623..cc0346ec 100644 --- a/laravel/cli/tasks/bundle/providers/github.php +++ b/laravel/cli/tasks/bundle/providers/github.php @@ -11,7 +11,7 @@ class Github extends Provider { */ 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); }