1
1
mirror of https://github.com/Eugeny/tabby.git synced 2024-12-22 10:01:40 +03:00

Update build-linux.js

This commit is contained in:
Jai A P 2022-03-21 12:08:52 +05:30 committed by GitHub
parent f2f0953b24
commit 26f93f7ac5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -9,13 +9,12 @@ process.env.ARCH = process.env.ARCH || process.arch
builder({
dir: true,
linux: ['deb', 'tar.gz', 'rpm', 'pacman'],
armv7l: process.env.ARCH === 'armv7l',
arm64: process.env.ARCH === 'arm64',
config: {
extraMetadata: {
version: vars.version,
},
npmRebuild: process.env.ARCH !== 'arm*',
npmRebuild: process.env.ARCH == 'arm64',
},
publish: isTag ? 'always' : 'onTag',
}).catch(() => process.exit(1))