mirror of
https://github.com/arduino/arduino-ide.git
synced 2025-07-13 14:26:37 +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": {
|
"linux": {
|
||||||
"target": [
|
"target": [
|
||||||
"tar.xz"
|
"zip"
|
||||||
],
|
],
|
||||||
"artifactName": "${productName}-${env.ARDUINO_VERSION}-${os}.${ext}"
|
"artifactName": "${productName}-${env.ARDUINO_VERSION}-${os}.${ext}"
|
||||||
},
|
},
|
||||||
|
@ -19,7 +19,7 @@ const yargs = require('yargs');
|
|||||||
ext = 'zip';
|
ext = 'zip';
|
||||||
os = 'win';
|
os = 'win';
|
||||||
} else if (platform === 'linux') {
|
} else if (platform === 'linux') {
|
||||||
ext = 'tar.xz';
|
ext = 'zip';
|
||||||
os = 'linux';
|
os = 'linux';
|
||||||
} else {
|
} else {
|
||||||
process.stderr.write(`Unexpected platform: ${platform}.`);
|
process.stderr.write(`Unexpected platform: ${platform}.`);
|
||||||
@ -31,4 +31,4 @@ const yargs = require('yargs');
|
|||||||
})
|
})
|
||||||
.demandCommand(1)
|
.demandCommand(1)
|
||||||
.argv;
|
.argv;
|
||||||
})();
|
})();
|
||||||
|
Loading…
x
Reference in New Issue
Block a user