From a7f30c63cb7315d6d872649921df4d02945aaa40 Mon Sep 17 00:00:00 2001 From: Kevin Sawicki Date: Thu, 11 Dec 2014 11:56:25 -0800 Subject: [PATCH] Don't bundle atom.sh on Windows --- build/tasks/build-task.coffee | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/build/tasks/build-task.coffee b/build/tasks/build-task.coffee index e3b063141..1f3a947a4 100644 --- a/build/tasks/build-task.coffee +++ b/build/tasks/build-task.coffee @@ -21,7 +21,9 @@ module.exports = (grunt) -> mkdir appDir - cp 'atom.sh', path.join(appDir, 'atom.sh') + if process.platform isnt 'win32' + cp 'atom.sh', path.join(appDir, 'atom.sh') + cp 'package.json', path.join(appDir, 'package.json') packageDirectories = []