Ensure env vars are consulted for PATH

This commit is contained in:
Dave Syer 2013-10-14 16:07:50 -04:00
parent 281c650251
commit be1263500d

View File

@ -261,7 +261,7 @@ public class PropertiesLauncher extends Launcher {
}
private void initializePaths() throws IOException {
String path = System.getProperty(PATH);
String path = SystemPropertyUtils.getProperty(PATH);
if (path == null) {
path = this.properties.getProperty(PATH);
}