We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dbbf707 commit 940b5f4Copy full SHA for 940b5f4
build/gulpfile.vscode.linux.js
@@ -238,7 +238,8 @@ function prepareSnapPackage(arch) {
238
const snapcraft = gulp.src('resources/linux/snap/snapcraft.yaml', { base: '.' })
239
.pipe(replace('@@NAME@@', product.applicationName))
240
.pipe(replace('@@VERSION@@', commit.substr(0, 8)))
241
- .pipe(replace('@@ARCHITECTURE@@', arch))
+ // Possible run-on values https://snapcraft.io/docs/architectures
242
+ .pipe(replace('@@ARCHITECTURE@@', arch === 'x64' ? 'amd64' : arch))
243
.pipe(rename('snap/snapcraft.yaml'));
244
245
const electronLaunch = gulp.src('resources/linux/snap/electron-launch', { base: '.' })
0 commit comments