Use correct 64-bith arch

This commit is contained in:
Kevin Sawicki 2014-10-23 12:02:52 -07:00
parent eaf435bd9a
commit d299692237

View File

@ -84,7 +84,7 @@ getAssets = ->
if process.arch is 'ia32'
arch = 'i386'
else
arch = 'x64_64'
arch = 'x86_64'
assetName = "atom.#{arch}.rpm"
{cp} = require('./task-helpers')(grunt)