From 776ac259209315a0b2f22fde53c64c69617c0322 Mon Sep 17 00:00:00 2001 From: Ingo Richter Date: Tue, 16 Dec 2014 10:48:55 -0800 Subject: [PATCH] - exclude ffmpegsumo.so and PDFlib from build --- Gruntfile.js | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/Gruntfile.js b/Gruntfile.js index bb63728b1..ffacf60cf 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -29,7 +29,7 @@ module.exports = function (grunt) { resolve = common.resolve, platform = common.platform(), staging; - + if (platform === "mac") { staging = "installer/mac/staging/<%= build.name %>.app/Contents"; } else if (platform === "win") { @@ -125,7 +125,10 @@ module.exports = function (grunt) { { "expand" : true, "cwd" : "xcodebuild/Release/<%= build.name %>.app/", - "src" : ["**"], + "src" : [ + "**", + "!**/Contents/Frameworks/Chromium Embedded Framework.framework/Libraries/**" + ], "dest" : "installer/mac/staging/<%= build.name %>.app/" } ],