1
1
mirror of https://github.com/Eugeny/tabby.git synced 2024-11-10 12:16:34 +03:00

Update build-linux.js

This commit is contained in:
Jai A P 2022-04-23 14:06:29 +05:30 committed by GitHub
parent 7c5e136c31
commit 8dba1bf5cd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -4,7 +4,10 @@ const vars = require('./vars')
const isTag = (process.env.GITHUB_REF || '').startsWith('refs/tags/')
process.env.ARCH = (process.env.ARCH || process.arch) === 'arm' ? 'armv7l' : process.arch
process.env.ARCH = process.env.ARCH || process.arch
if (process.env.ARCH === 'arm') {
process.env.ARCH = 'armv7l'
}
builder({
dir: true,