From bcc888bfb41f467f31a8d89c279ae9630416fec3 Mon Sep 17 00:00:00 2001 From: Kevin Sawicki Date: Mon, 16 Jun 2014 14:15:23 -0700 Subject: [PATCH] :lipstick: --- build/tasks/build-task.coffee | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/build/tasks/build-task.coffee b/build/tasks/build-task.coffee index 028485933..ab8cbb768 100644 --- a/build/tasks/build-task.coffee +++ b/build/tasks/build-task.coffee @@ -61,10 +61,9 @@ module.exports = (grunt) -> ] ignoredPaths = ignoredPaths.map (ignoredPath) -> _.escapeRegExp(ignoredPath) - # Put patterns here that shouldn't be escaped - ignoredPaths.push _.escapeRegExp(path.join('build', 'Release') + path.sep) + '.*\\.pdb' # Add .* to avoid matching hunspell_dictionaries. ignoredPaths.push _.escapeRegExp(path.join('spellchecker', 'vendor', 'hunspell') + path.sep) + ".*" + ignoredPaths.push _.escapeRegExp(path.join('build', 'Release') + path.sep) + '.*\\.pdb' # Hunspell dictionaries are only not needed on OS X. if process.platform is 'darwin'