Merge pull request #12572 from ablakely/patch-1

Update create-debian-package.js
This commit is contained in:
Nathan Sobo 2016-09-01 07:21:02 -06:00 committed by GitHub
commit 95ab4ab754

View File

@ -20,6 +20,8 @@ module.exports = function (packagedAppPath) {
arch = 'i386'
} else if (process.arch === 'x64') {
arch = 'amd64'
} else if (process.arch === 'ppc') {
arch = 'powerpc'
} else {
arch = process.arch
}