From 0741e92e7be31a552cb0ee9c89af60eb1e64b449 Mon Sep 17 00:00:00 2001 From: Marconi Filho Date: Sun, 4 Aug 2024 19:08:19 -0300 Subject: [PATCH] Fixes arm64 build to universal package Fixes an issue that arm64 builds are flagged as "damaged" by macOS due to lack of signature, using universal builds fixes the package and runs on native instructions. --- electron-builder.json | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/electron-builder.json b/electron-builder.json index 2e7c0f1..a3ba97c 100644 --- a/electron-builder.json +++ b/electron-builder.json @@ -27,8 +27,7 @@ { "target": "dmg", "arch": [ - "x64", - "arm64" + "universal" ] } ],