DateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd HH:MM");
String now = dateFormat.format(new Date());
while (!jsInstallationsUpdateFile.eof()) {
Installation installationUpdate = jsInstallationsUpdateFile.nextInstallation();
if (installationUpdate.getLastRun() == null || installationUpdate.getLastRun().equals("") || update) {
installationUpdate.setLastRun(now);
}
}
jsInstallationsUpdateFile.writeFile(installationsDefinitionFile);
}