提交 9c25e1a6 编写于 作者: K kzantow

Use class name convention for file names

上级 04a34a35
......@@ -187,11 +187,11 @@ public class InstallUtil {
}
static File getLastExecVersionFile() {
return new File(Jenkins.getInstance().getRootDir(), "last_run_version");
return new File(Jenkins.getInstance().getRootDir(), "jenkins.install.InstallUtil.lastExecVersion");
}
static File getInstallingPluginsFile() {
return new File(Jenkins.getInstance().getRootDir(), "setup_wizard_installing_plugins");
return new File(Jenkins.getInstance().getRootDir(), "jenkins.install.InstallUtil.installingPlugins");
}
private static String getCurrentExecVersion() {
......
......@@ -47,7 +47,7 @@ public class UpgradeWizard extends PageDecorator {
* This file records the vesrion number that the installation has upgraded to.
*/
/*package*/ File getStateFile() {
return new File(Jenkins.getInstance().getRootDir(),"last_upgrade_version");
return new File(Jenkins.getInstance().getRootDir(),"jenkins.install.UpgradeWizard.state");
}
public UpgradeWizard() throws IOException {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册