mirror of
https://github.com/meshtastic/python.git
synced 2025-12-24 08:27:55 -05:00
add pyinstaller as a dev dep. Use it to make "bin/build-bin.sh" remove old version scripts (no longer needed with poetry)
10 lines
188 B
Bash
Executable File
10 lines
188 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
echo Building ubuntu binary
|
|
poetry install
|
|
source $(poetry env info --path)/bin/activate
|
|
pyinstaller -F -n meshtastic --collect-all meshtastic meshtastic/__main__.py
|
|
|