Skip to content

Commit

Permalink
Patch to address zip finalization in 0.10.x
Browse files Browse the repository at this point in the history
  • Loading branch information
InconceivableDuck committed Aug 17, 2013
1 parent 0c473e3 commit d720265
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion lib/commands/project.js
Original file line number Diff line number Diff line change
Expand Up @@ -557,7 +557,10 @@ project._packageProject = function(dir, includeModules, cb) {
fs.unlinkSync(path.join(dir, '.modulus-base-ignore'));

if(!error) {
return cb(null, fname);
setTimeout(function() {
return cb(null, fname);
}, 3000);

}
});
});
Expand Down

0 comments on commit d720265

Please sign in to comment.