Merge pull request #8 from eyeofhell/master

Fixed 64-bit windows install
This commit is contained in:
Mathias Buus 2014-12-12 14:19:23 -08:00
commit cfa1c2e15d

View file

@ -8,6 +8,10 @@ var fs = require('fs')
var platform = os.platform()
var arch = os.arch()
if ('win32' === platform) {
// 64-bit is not available under windows.
arch = 'ia32';
}
var version = '0.19.5'
var name = 'atom-shell-v'+version+'-'+platform+'-'+arch+'.zip'
var url = 'https://github.com/atom/atom-shell/releases/download/v'+version+'/atom-shell-v'+version+'-'+platform+'-'+arch+'.zip'