Skip to content
This repository has been archived by the owner on Apr 20, 2018. It is now read-only.

Commit

Permalink
Merge pull request #496 from ruyadorno/fix-duplicate-configs
Browse files Browse the repository at this point in the history
Duplicate blocks should raise a warn instead of a fatal error
  • Loading branch information
sindresorhus committed Dec 11, 2014
2 parents 43233fb + b21b954 commit 969b295
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tasks/usemin.js
Expand Up @@ -187,7 +187,7 @@ module.exports = function (grunt) {
try {
config = c.process(filepath, grunt.config());
} catch (e) {
grunt.fail.fatal(e);
grunt.fail.warn(e);
}

_.forEach(cfgNames, function (name) {
Expand Down

0 comments on commit 969b295

Please sign in to comment.