mirror of
https://git.quad4.io/RNS-Things/MeshChatX.git
synced 2026-04-07 22:15:44 +00:00
12 lines
291 B
Bash
Executable File
12 lines
291 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# Install Python (Poetry) and Node (pnpm) dependencies for native Electron builds.
|
|
set -euo pipefail
|
|
|
|
ROOT="$(cd "$(dirname "$0")/../.." && pwd)"
|
|
cd "$ROOT"
|
|
|
|
export GIT_TERMINAL_PROMPT=0
|
|
|
|
python -m poetry install --no-interaction --no-ansi
|
|
pnpm install --frozen-lockfile
|