"Could not load properties from file \"" + fileName
+ "\".", e);
}
} else if (environment != null) {
// Load the environment into the project's properties
Iterator variables = new OSEnvironment().getEnvironment().iterator();
while (variables.hasNext()) {
String line = (String) variables.next();
int index = line.indexOf('=');
if (index < 0) {
continue;