Skip to content

Commit

Permalink
Fix for smysnk#149 (reverted from commit 047c955)
Browse files Browse the repository at this point in the history
  • Loading branch information
loo2k committed Jul 5, 2016
1 parent 9b3c311 commit 78739cb
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ var Revisioner = require('./revisioner');
var RevAll = (function () {

var RevAll = function (options) {

if (!(this instanceof RevAll)) {
return new RevAll(options);
}
Expand Down Expand Up @@ -54,8 +54,8 @@ var RevAll = (function () {
callback();

}, function (callback) {
if (revisioner.files.length > 0)
this.push(revisioner.versionFile());

this.push(revisioner.versionFile());
callback();

});
Expand All @@ -72,8 +72,8 @@ var RevAll = (function () {
callback();

}, function (callback) {
if (revisioner.files.length > 0)
this.push(revisioner.manifestFile());

this.push(revisioner.manifestFile());
callback();

});
Expand Down

0 comments on commit 78739cb

Please sign in to comment.