mirror of
https://git.quad4.io/RNS-Things/MeshChatX.git
synced 2026-04-06 05:05:45 +00:00
11 lines
269 B
Bash
Executable File
11 lines
269 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# Build macOS universal (x64 + arm64) DMG via electron-builder. Unsigned CI build; signing is disabled.
|
|
set -euo pipefail
|
|
|
|
ROOT="$(cd "$(dirname "$0")/../.." && pwd)"
|
|
cd "$ROOT"
|
|
|
|
export CSC_IDENTITY_AUTO_DISCOVERY=false
|
|
|
|
pnpm run dist:mac-universal
|