Skip to content

Commit

Permalink
[fix] Increase package limit
Browse files Browse the repository at this point in the history
  • Loading branch information
julianduque committed Jun 30, 2014
1 parent b5650b0 commit 89c4718
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/jitsu/package.js
Expand Up @@ -425,8 +425,8 @@ package.updateTarball = function (version, pkg, existing, firstSnapshot, callbac

// XXX Is 30mb enough? Please warning message
if (stat.size > 30 * 1024 * 1024) {
jitsu.log.warn('Snapshot is larger than ' + '30M'.magenta + '!');
jitsu.log.warn('This is not recommended practice.');
jitsu.log.warn('Snapshot is larger than ' + '70M'.magenta + '!');
jitsu.log.warn('Keep size below this limit for successful deploy.');
}

var emitter = jitsu.snapshots.create(pkg.name, version, filename, function (err, res) {
Expand Down

0 comments on commit 89c4718

Please sign in to comment.