Closes gh-10921
This commit is contained in:
Johnny Lim
2017-11-04 05:37:09 +09:00
committed by Stephane Nicoll
parent c9e18e2130
commit c05a299520
14 changed files with 21 additions and 29 deletions

View File

@@ -104,7 +104,7 @@ public class DefaultLaunchScript implements LaunchScript {
if (properties != null && properties.containsKey(name)) {
Object propertyValue = properties.get(name);
if (FILE_PATH_KEYS.contains(name)) {
value = parseFilePropertyValue(properties.get(name));
value = parseFilePropertyValue(propertyValue);
}
else {
value = propertyValue.toString();