mirror of
https://github.com/onionshare/onionshare.git
synced 2024-10-01 01:35:40 -04:00
15 lines
257 B
Bash
Executable File
15 lines
257 B
Bash
Executable File
#!/bin/bash
|
|
|
|
ROOT="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && cd .. && pwd )"
|
|
cd $ROOT
|
|
|
|
# deleting dist
|
|
echo Deleting dist folder
|
|
rm -rf $ROOT/dist &>/dev/null 2>&1
|
|
|
|
# build the .app
|
|
echo Building OnionShare.app
|
|
python setup.py py2app
|
|
|
|
# codesign the .app
|