allow user to cancel automatic installation of dependencies during install

master
Jonathan Dahan 2012-11-19 12:37:46 -05:00
parent 77e1accb37
commit 6b80b3dadd
1 changed files with 12 additions and 2 deletions

View File

@ -11,12 +11,22 @@ fi
displayMessage() displayMessage()
{ {
/usr/bin/osascript > /dev/null <<-EOF /usr/bin/osascript > /dev/null << EOF
tell application "System Events" tell application "System Events"
activate activate
display dialog "$@" buttons {"Ok"} set question to display dialog "$@"
end tell
return button returned of question
EOF
if [ $? != 0 ]; then
/usr/bin/osascript > /dev/null << EOF
tell application "System Events"
activate
display dialog "User Cancelled Install" buttons {"Ok"}
end tell end tell
EOF EOF
exit 1
fi
} }
#Testing for python2.7, which we need and is not always installed on MacOS 1.6 #Testing for python2.7, which we need and is not always installed on MacOS 1.6