(ded4a3e0a) v0.9.0.7

This commit is contained in:
Joonas Rikkonen
2019-06-25 16:00:44 +03:00
parent e5ae622c77
commit 4a51db77b5
1777 changed files with 421528 additions and 917 deletions

View File

@@ -0,0 +1,19 @@
#!/bin/bash
if [ -d "/Applications/Xamarin Studio.app" ]
then
CONSOLE_USER=$(stat -f '%Su' /dev/console)
sudo -u $CONSOLE_USER /Applications/Xamarin\ Studio.app/Contents/MacOS/mdtool setup install /tmp/MonoDevelop.MonoGame_*.mpack -y
fi
if [ -d "/Applications/Visual Studio.app" ]
then
CONSOLE_USER=$(stat -f '%Su' /dev/console)
sudo -u $CONSOLE_USER /Applications/Visual\ Studio.app/Contents/MacOS/vstool setup install /tmp/MonoDevelop.MonoGame_IDE_VisualStudioForMac_*.mpack -y
fi
if [ -f "/tmp/MonoDevelop.MonoGame_*.mpack" ]
then
sudo rm /tmp/MonoDevelop.MonoGame_*.mpack
fi
if [ -f "/tmp/MonoDevelop.MonoGame_IDE_VisualStudioForMac_*.mpack" ]
then
sudo rm /tmp/MonoDevelop.MonoGame_IDE_VisualStudioForMac_*.mpack
fi