mirror of
https://git.quad4.io/RNS-Things/MeshChatX.git
synced 2026-04-07 02:45:46 +00:00
11 lines
272 B
Bash
Executable File
11 lines
272 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# Build Windows portable + NSIS installers (electron-builder). See package.json dist:windows.
|
|
set -euo pipefail
|
|
|
|
ROOT="$(cd "$(dirname "$0")/../.." && pwd)"
|
|
cd "$ROOT"
|
|
|
|
git config --global core.longpaths true 2>/dev/null || true
|
|
|
|
pnpm run dist:windows
|