Commit 1559a6bb authored by Jason Lewis's avatar Jason Lewis

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

Signed-off-by: 's avatarJason Lewis <jason.lewis1991@gmail.com>
parent 4c53b9d9
...@@ -11,7 +11,7 @@ class Github extends Provider { ...@@ -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);
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment