[MacOS] Comment out osascript for the time being

osascript tries to talk to Finder, which is not possible when running
the Mac OS slave over ssh.
This commit is contained in:
Roland Winklmeier
2017-11-03 15:50:25 +01:00
parent be321a3fa5
commit a23ccb5ac7

View File

@@ -71,7 +71,8 @@
<program>hdiutil</program>
<programArguments>attach -readwrite -noverify -noautoopen "${tempDmgFile}"</programArguments>
</runProgram>
<runProgram>
<!-- Apple script cannot talk to Finder when running via ssh -->
<!-- <runProgram>
<program>osascript</program>
<programArguments>-e 'tell application "Finder"
tell disk "${project.fullName}"
@@ -91,7 +92,7 @@ delay 5
end tell
end tell'
</programArguments>
</runProgram>
</runProgram> -->
<runProgram>
<program>hdiutil</program>
<programArguments>detach "/Volumes/${project.fullName}"</programArguments>