Skip to content

Commit

Permalink
getting the root of buildify correct this time
Browse files Browse the repository at this point in the history
  • Loading branch information
whadar committed Dec 23, 2013
1 parent e2facc6 commit c7bcf68
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sharefest/server/lib/router.js
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ exports.configure = function (app, rootdir) {
files = (modes[mode]);
}

var js = buildify('..').concat(files);
var js = buildify().concat(files);
js = js.perform(function (content) {
return content.replace(/peer5.config.BLOCK_SIZE/g, config.blockSize);
});
Expand Down Expand Up @@ -122,4 +122,4 @@ exports.configure = function (app, rootdir) {
res.sendfile(rootdir + '/public/index.html');
});
}
;
;

0 comments on commit c7bcf68

Please sign in to comment.