diff options
| author | Carl Hetherington <cth@carlh.net> | 2018-03-22 15:19:20 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2018-03-22 15:19:20 +0000 |
| commit | 29afbec47a408e41b5f0c0e373bbee5393113f59 (patch) | |
| tree | df11ad66d6e0f23ebeb7e0c0604b4c683932806b | |
| parent | a5f758799ceb26e6d745c280c979777af794f157 (diff) | |
Restore correct quoting to Applescript.
| -rw-r--r-- | platform/osx/make_dmg.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/platform/osx/make_dmg.sh b/platform/osx/make_dmg.sh index 7045b6c88..e7ef8ee8f 100644 --- a/platform/osx/make_dmg.sh +++ b/platform/osx/make_dmg.sh @@ -206,7 +206,7 @@ EOF echo ' tell application "Finder" - tell disk "$vol_name" + tell disk "'$vol_name'" open set current view of container window to icon view set toolbar visible of container window to false @@ -215,7 +215,7 @@ EOF set theViewOptions to the icon view options of container window set arrangement of theViewOptions to not arranged set icon size of theViewOptions to 64 - set position of item "$appdir" of container window to {90, 80} + set position of item "'$appdir'" of container window to {90, 80} set position of item "Applications" of container window to {265, 80} set position of item "READ ME.txt" of container window to {430, 80} set position of item "READ ME.de_DE.txt" of container window to {595, 80} |
