Removed sudo when building DMG
There's no reason that needs to be run as a superuser.
This commit is contained in:
parent
f0557e3987
commit
f0ba10e2b9
4
osx.sh
Normal file → Executable file
4
osx.sh
Normal file → Executable file
|
@ -12,12 +12,12 @@ if [[ -z "$1" ]]; then
|
||||||
exit
|
exit
|
||||||
fi
|
fi
|
||||||
|
|
||||||
echo "Creating OS X packages for Bitmessage. This script will ask for sudo to create the dmg volume"
|
echo "Creating OS X packages for Bitmessage."
|
||||||
|
|
||||||
cd src && python build_osx.py py2app
|
cd src && python build_osx.py py2app
|
||||||
|
|
||||||
if [[ $? = "0" ]]; then
|
if [[ $? = "0" ]]; then
|
||||||
sudo hdiutil create -fs HFS+ -volname "Bitmessage" -srcfolder dist/Bitmessage.app dist/bitmessage-v$1.dmg
|
hdiutil create -fs HFS+ -volname "Bitmessage" -srcfolder dist/Bitmessage.app dist/bitmessage-v$1.dmg
|
||||||
else
|
else
|
||||||
echo "Problem creating Bitmessage.app, stopping."
|
echo "Problem creating Bitmessage.app, stopping."
|
||||||
exit
|
exit
|
||||||
|
|
Loading…
Reference in New Issue
Block a user