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