Respect repositoryBackupInterval when deciding whether to perform backup during auto-update. Issue #10

This commit is contained in:
catbref 2020-08-12 14:22:36 +01:00
parent 91e82d1e3c
commit f6216b9745

View File

@ -214,8 +214,9 @@ public class AutoUpdate extends Thread {
return false; // failed - try another repo
}
// Give repository a chance to backup in case things go badly wrong
RepositoryManager.backup(true);
// Give repository a chance to backup in case things go badly wrong (if enabled)
if (Settings.getInstance().getRepositoryBackupInterval() > 0)
RepositoryManager.backup(true);
// Call ApplyUpdate to end this process (unlocking current JAR so it can be replaced)
String javaHome = System.getProperty("java.home");