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

Signed-off-by: Jason Lewis <jason.lewis1991@gmail.com>
This commit is contained in:
Jason Lewis 2012-11-04 15:43:03 +11:00
parent 4c53b9d94d
commit 1559a6bbc8
1 changed files with 1 additions and 1 deletions

View File

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