From 0262ae3c9d2da59350fbeb8d60bee73f5996a5df Mon Sep 17 00:00:00 2001 From: Kevin Sawicki Date: Wed, 20 May 2015 12:12:09 -0700 Subject: [PATCH] Update build to use electron --- build/Gruntfile.coffee | 10 +++++----- package.json | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/build/Gruntfile.coffee b/build/Gruntfile.coffee index d21e8fa4a..1fbdf591e 100644 --- a/build/Gruntfile.coffee +++ b/build/Gruntfile.coffee @@ -43,7 +43,7 @@ module.exports = (grunt) -> installDir = grunt.option('install-dir') home = if process.platform is 'win32' then process.env.USERPROFILE else process.env.HOME - atomShellDownloadDir = path.join(home, '.atom', 'atom-shell') + electronDownloadDir = path.join(home, '.atom', 'electron') symbolsDir = path.join(buildDir, 'Atom.breakpad.syms') shellAppDir = path.join(buildDir, appName) @@ -225,10 +225,10 @@ module.exports = (grunt) -> 'static/**/*.less' ] - 'download-atom-shell': - version: packageJson.atomShellVersion - outputDir: 'atom-shell' - downloadDir: atomShellDownloadDir + 'download-electron': + version: packageJson.electronVersion + outputDir: 'electron' + downloadDir: electronDownloadDir rebuild: true # rebuild native modules after atom-shell is updated token: process.env.ATOM_ACCESS_TOKEN diff --git a/package.json b/package.json index e85d130e6..e4bdfddb7 100644 --- a/package.json +++ b/package.json @@ -12,7 +12,7 @@ "url": "https://github.com/atom/atom/issues" }, "license": "MIT", - "atomShellVersion": "0.22.3", + "atomShellVersion": "0.26.0", "dependencies": { "async": "0.2.6", "atom-keymap": "^5.1.10",