mirror of
https://github.com/arduino/arduino-ide.git
synced 2025-07-13 06:16:33 +00:00
Use zip target for Linux (see electron-userland/electron-builder#2868)
This commit is contained in:
parent
bef9185c6c
commit
21cd580e41
@ -62,7 +62,7 @@
|
||||
},
|
||||
"linux": {
|
||||
"target": [
|
||||
"tar.xz"
|
||||
"zip"
|
||||
],
|
||||
"artifactName": "${productName}-${env.ARDUINO_VERSION}-${os}.${ext}"
|
||||
},
|
||||
|
@ -19,7 +19,7 @@ const yargs = require('yargs');
|
||||
ext = 'zip';
|
||||
os = 'win';
|
||||
} else if (platform === 'linux') {
|
||||
ext = 'tar.xz';
|
||||
ext = 'zip';
|
||||
os = 'linux';
|
||||
} else {
|
||||
process.stderr.write(`Unexpected platform: ${platform}.`);
|
||||
@ -31,4 +31,4 @@ const yargs = require('yargs');
|
||||
})
|
||||
.demandCommand(1)
|
||||
.argv;
|
||||
})();
|
||||
})();
|
||||
|
Loading…
x
Reference in New Issue
Block a user