From 75230ccb40d3e6c937b7f62a2f5afc8f7e29c9d7 Mon Sep 17 00:00:00 2001 From: Thomas Nordquist Date: Tue, 15 Jan 2019 13:55:06 +0100 Subject: [PATCH] Add snap package target --- package.ts | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/package.ts b/package.ts index ddf8c7c..5974707 100644 --- a/package.ts +++ b/package.ts @@ -11,10 +11,10 @@ const linux: builder.CliOptions = { } const linuxSnap: builder.CliOptions = { - x64: false, + x64: true, ia32: false, armv7l: false, - arm64: true, + arm64: false, linux: ['snap'], projectDir: './build/clean', publish: 'always', @@ -48,6 +48,8 @@ async function executeBuild() { break case 'linux': await builder.build(linux) + break + case 'snap': try { await builder.build(linuxSnap) } catch {