Skip to content
This repository was archived by the owner on Apr 12, 2024. It is now read-only.

Allow Windows to download 64-bit electron builds. #35

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "grunt-download-electron",
"description": "Grunt task to download electron",
"version": "2.1.4",
"version": "2.1.5",
"main": "grunt.js",
"dependencies": {
"decompress-zip": "0.0.4",
Expand Down
1 change: 0 additions & 1 deletion tasks/download-atom-shell-task.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ module.exports = (grunt) ->

getArch = ->
switch process.platform
when 'win32' then 'ia32'
when 'darwin' then 'x64'
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The default should probably still be 32-bit, but having an explicit override should definitely be A Thing

else process.arch

Expand Down