diff --git a/lib/grunt/plugins.js b/lib/grunt/plugins.js index 6c8dd020da..11b53dda13 100644 --- a/lib/grunt/plugins.js +++ b/lib/grunt/plugins.js @@ -175,7 +175,6 @@ module.exports = function(grunt) { grunt.task.requires(['build']); var options = this.options({ - stableSuffix: '', unstableSuffix: '-unstable', cleanup: false }); @@ -229,7 +228,7 @@ module.exports = function(grunt) { } // Skip file if it was already released - var re = new RegExp('(' + options.stableSuffix + '|' + options.unstableSuffix + ')'); + var re = new RegExp('(' + options.unstableSuffix + ')'); if (basename.match(re)) { grunt.log.writeln("Skipping file: " + f); return;