Skip to content
Snippets Groups Projects
Commit 69beca8f authored by rswindell's avatar rswindell
Browse files

Use system.exec() to run "binkit.js install" rather than load(). binkit.js

calls exit() when exits the parent script when called from a load()'d
module. :-(
Touch the fidoout.now sem file after creating the AreaFix netmail message.
parent e503d99d
No related branches found
No related tags found
No related merge requests found
......@@ -181,7 +181,7 @@ if(confirm("Download and install " + netname + " EchoList")) {
/* INSTALL BINKIT */
/******************/
if(confirm("Install BinkIT")) {
load("binkit.js", "install");
system.exec(system.exec_dir + "jsexec binkit install");
}
/************************/
......@@ -205,13 +205,14 @@ if(confirm("Create an AreaFix request to link ALL EchoMail areas with "
exit(1);
}
msgbase.close();
print("AreaFix NetMail message created successfully");
file_touch(system.data_dir + "fidoout.now");
print("AreaFix NetMail message created successfully.");
}
/***********************/
/* DISPLAY FINAL NOTES */
/***********************/
print(netname + " initial setup completely successfully");
print(netname + " initial setup completely successfully.");
print();
if(your.node == 9999) {
print("You used a temporary (e.g. /9999) node address. You will need to update your");
......
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