From adea792b783d519871e9c3f4a6929651e09272b7 Mon Sep 17 00:00:00 2001 From: Kevin Sawicki Date: Tue, 22 Jul 2014 09:24:06 -0700 Subject: [PATCH] Use tmpDir variable --- build/Gruntfile.coffee | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/Gruntfile.coffee b/build/Gruntfile.coffee index 2aa4a8c67..e07f7363a 100644 --- a/build/Gruntfile.coffee +++ b/build/Gruntfile.coffee @@ -40,7 +40,7 @@ module.exports = (grunt) -> 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') + atomShellDownloadDir = path.join(tmpDir, 'atom-cached-atom-shells') symbolsDir = path.join(buildDir, 'Atom.breakpad.syms') shellAppDir = path.join(buildDir, appName) if process.platform is 'win32'