mirror of
https://github.com/liamcottle/reticulum-meshchat.git
synced 2026-04-27 16:10:32 +00:00
12 lines
269 B
Bash
12 lines
269 B
Bash
#!/bin/sh
|
|
|
|
# build .app for mac
|
|
python setup.py bdist_mac
|
|
|
|
# copy shell script to .app
|
|
for DIR in ./build/ReticulumWebChat-*.app/Contents/MacOS; do
|
|
cp ./macos/ReticulumWebChat.sh "$DIR/ReticulumWebChat.sh"
|
|
chmod +x "$DIR/ReticulumWebChat.sh"
|
|
done
|
|
|
|
# todo codesign?
|