chore: update to electron 27 (#197539)

* chore: update electron@27.0.2

* chore: update debian dependencies

* chore: bump electron@27.0.4

* chore: bump electron@27.1.0

* chore: bump electron@27.1.3

* chore: bump distro
This commit is contained in:
Robo
2023-12-07 18:48:24 +09:00
committed by GitHub
parent bdef7fd3fb
commit 12fece34ed
16 changed files with 131 additions and 123 deletions

View File

@@ -37,7 +37,7 @@ async function getSysroot(arch) {
throw new Error('Cannot retrieve sysroots.json. Stderr:\n' + result.stderr);
}
const sysrootInfo = require(sysrootDictLocation);
const sysrootArch = arch === 'armhf' ? 'bullseye_arm' : `bullseye_${arch}`;
const sysrootArch = `bullseye_${arch}`;
const sysrootDict = sysrootInfo[sysrootArch];
const tarballFilename = sysrootDict['Tarball'];
const tarballSha = sysrootDict['Sha1Sum'];