mirror of
https://github.com/marcelstoer/nodemcu-pyflasher.git
synced 2025-04-19 21:07:18 +00:00
14 lines
326 B
Bash
Executable File
14 lines
326 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# rm -fr build dist
|
|
VERSION=5.0.0
|
|
NAME=NodeMCU-PyFlasher
|
|
|
|
pyinstaller --log-level=DEBUG \
|
|
--noconfirm \
|
|
--windowed \
|
|
build-on-mac.spec
|
|
|
|
# https://github.com/sindresorhus/create-dmg
|
|
create-dmg dist/$NAME-$VERSION.app
|
|
mv "$NAME-$VERSION 0.0.0.dmg" dist/$NAME-$VERSION.dmg
|