From 0c31843ed55125a54210cbb0cb747c763a494d62 Mon Sep 17 00:00:00 2001 From: Thomas Nordquist Date: Sat, 11 May 2024 21:29:53 +0200 Subject: [PATCH] chore: reduce builds --- package.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package.ts b/package.ts index dc3b8dd..db06d65 100644 --- a/package.ts +++ b/package.ts @@ -15,8 +15,8 @@ const linuxAppImage: builder.CliOptions = { const linuxSnap: builder.CliOptions = { x64: true, ia32: false, - armv7l: true, - arm64: true, + armv7l: false, // not supported to build on x64 + arm64: false, // not supported to build on x64 projectDir: './build/clean', publish: 'always', }