Skip to content

Commit ed46a98

Browse files
author
Akos Kitta
committed
fix: follow the Arduino artifact naming convention
- Use `ARM64` instead of `arm64` on Linux and macOS. - Switched from `armv7` to `ARMv7` on Linux. Closes #2117 Signed-off-by: Akos Kitta <[email protected]>
1 parent 6e18dca commit ed46a98

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

electron/packager/config.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -28,17 +28,17 @@ async function artifactName() {
2828
}
2929
case 'darwin': {
3030
if (arch === 'arm64') {
31-
return `${name}_${id}_macOS_arm64.\$\{ext}`;
31+
return `${name}_${id}_macOS_ARM64.\$\{ext}`;
3232
}
3333
return `${name}_${id}_macOS_64bit.\$\{ext}`;
3434
}
3535
case 'linux': {
3636
switch (arch) {
3737
case 'arm': {
38-
return `${name}_${id}_Linux_armv7.\$\{ext}`;
38+
return `${name}_${id}_Linux_ARMv7.\$\{ext}`;
3939
}
4040
case 'arm64': {
41-
return `${name}_${id}_Linux_arm64.\$\{ext}`;
41+
return `${name}_${id}_Linux_ARM64.\$\{ext}`;
4242
}
4343
case 'x64': {
4444
return `${name}_${id}_Linux_64bit.\$\{ext}`;

0 commit comments

Comments
 (0)