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