From 7571028d70069fed63bee65aadd606b5caf41ac6 Mon Sep 17 00:00:00 2001 From: Jonathan Leitschuh Date: Mon, 10 Aug 2015 23:28:31 -0400 Subject: [PATCH] fix(build): Fixes Grunt Task not Publishing The grunt task wasn't publishing to the bower repo because of a file not existing. --- lib/grunt/plugins.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) 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;