From 18ea3bcb99366db8fa7429ab83f7ee27b12197c3 Mon Sep 17 00:00:00 2001 From: Kevin Sawicki Date: Tue, 15 Jul 2014 10:10:51 -0700 Subject: [PATCH] Don't include atom-shell's default_app folder --- build/tasks/build-task.coffee | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build/tasks/build-task.coffee b/build/tasks/build-task.coffee index 54394105a..ba834b63c 100644 --- a/build/tasks/build-task.coffee +++ b/build/tasks/build-task.coffee @@ -14,9 +14,9 @@ module.exports = (grunt) -> mkdir path.dirname(buildDir) if process.platform is 'darwin' - cp 'atom-shell/Atom.app', shellAppDir + cp 'atom-shell/Atom.app', shellAppDir, filter: -> /default_app/ else - cp 'atom-shell', shellAppDir + cp 'atom-shell', shellAppDir, filter: -> /default_app/ mkdir appDir