mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-08-26 23:13:25 +00:00
7 lines
229 B
Bash
Executable file
7 lines
229 B
Bash
Executable file
#!/bin/bash
|
|
rm -rf dist
|
|
export PYTHONHASHSEED=22
|
|
VERSION=`git describe --tags`
|
|
pyinstaller --noconfirm --ascii contrib/osx.spec
|
|
hdiutil create -fs HFS+ -volname "Electrum" -srcfolder dist/Electrum.app dist/electrum-$VERSION.dmg
|
|
|