From 092dac76250ef2da774f30aa4460238df48035ca Mon Sep 17 00:00:00 2001 From: Kevin Sawicki Date: Wed, 2 Jul 2014 14:33:44 -0700 Subject: [PATCH] Group build and install dir together --- build/Gruntfile.coffee | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/Gruntfile.coffee b/build/Gruntfile.coffee index c54771437..177afc536 100644 --- a/build/Gruntfile.coffee +++ b/build/Gruntfile.coffee @@ -39,10 +39,10 @@ module.exports = (grunt) -> tmpDir = os.tmpdir() appName = if process.platform is 'darwin' then 'Atom.app' else 'Atom' buildDir = grunt.option('build-dir') ? path.join(tmpDir, 'atom-build') + installDir = grunt.option('install-dir') atomShellDownloadDir = path.join(os.tmpdir(), 'atom-cached-atom-shells') symbolsDir = path.join(buildDir, 'Atom.breakpad.syms') shellAppDir = path.join(buildDir, appName) - installDir = grunt.option('install-dir') if process.platform is 'win32' contentsDir = shellAppDir appDir = path.join(shellAppDir, 'resources', 'app')