Skip to content

Commit

Permalink
Change URL to rawgithub for the pull
Browse files Browse the repository at this point in the history
  • Loading branch information
jtenner committed Oct 24, 2013
1 parent ebed34d commit 98e8085
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/builder.js
Expand Up @@ -64,7 +64,7 @@ if (argv.versions) {
var exclude = (argv.exclude) ? argv.exclude.split(',') : undefined;

var file = filename(exclude, argv.minify);
var url = 'https://raw.github.com/jgallen23/jquery-builder/'+version+'/dist/'+argv.version+'/'+file;
var url = 'https://rawgithub.com/jgallen23/jquery-builder/'+version+'/dist/'+argv.version+'/'+file;
request.get(url, function(err, response, body) {
if (err) {
throw err;
Expand Down

1 comment on commit 98e8085

@bradleesand
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Almost exactly a year later I'm wondering why this was done. We don't need the content type which seems to be the purpose of rawgithub.com (per this blog post http://wonko.com/post/rawgithub). The problem is that rawgithub.com is down right now and I think raw.github.com is more reliable. I'm submitting a pull request #20

Please sign in to comment.