liamcottle___reticulum-mesh.../build_macos.sh
2024-05-25 03:10:30 +12:00

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?