Skip to content
Snippets Groups Projects
Commit 682e2837 authored by Rob Swindell's avatar Rob Swindell :speech_balloon:
Browse files

Run upgrade_to_v320 automatically when user.tab doesn't exist

parent f8b7e233
No related branches found
No related tags found
No related merge requests found
......@@ -223,6 +223,7 @@ if(!upgraded) {
print("No v3.19 file bases found, running " + cmdline);
system.exec(cmdline);
}
print("Checking for v3.20 config files");
upgraded = true;
["main.cnf", "msgs.cnf", "file.cnf", "xtrn.cnf", "chat.cnf"].forEach(function(f) {
......@@ -232,3 +233,10 @@ upgraded = true;
if(!upgraded)
js.exec("upgrade_to_v320.js", {});
print("Checking for v3.20 user base");
if(!file_exists(system.data_dir + 'user/user.tab')) {
var cmdline = system.exec_dir + "upgrade_to_v320";
print("No v3.20 user base found, running " + cmdline);
system.exec(cmdline);
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment