crotwell / gradle-macappbundle

A Gradle Plugin to create a Mac OSX .app application and dmg based on the project.
Apache License 2.0
94 stars 33 forks source link

Fix a bug with spaces in cmd line args. #40

Closed azhawkes closed 8 years ago

azhawkes commented 8 years ago

When volumeName or dmgName contain spaces and there is a background image, runCmd fails because it is interpreted literally and spaces are not escaped. Because of this, hdiutil thought they were separate arguments.

This was only an issue with the runCmd routine -- commandLine was already handling it correctly.