mirror of
https://github.com/dk98174003/Meshtastic-Client.git
synced 2026-03-28 17:32:36 +01:00
Problems on other installations tkinter must be installed on system and this is now included in the installation launcher. Also building the virtual enviroment here also tkinter is fixed. New deb version is compiled and also uploaded. Knud ;O) Have fun ;O))
17 lines
314 B
Bash
17 lines
314 B
Bash
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
# Run from the *current directory* (.) so the project can be moved.
|
|
PROJECT_DIR="."
|
|
cd "$PROJECT_DIR"
|
|
|
|
# Load env vars from .envrc (if present)
|
|
if [[ -f ".envrc" ]]; then
|
|
set -a
|
|
# shellcheck disable=SC1091
|
|
source ".envrc"
|
|
set +a
|
|
fi
|
|
|
|
exec python3 meshtastic_client.py
|