From 43154d5b1ef01cb95c7cdbf57e3bb43f622363f4 Mon Sep 17 00:00:00 2001 From: rswindell <> Date: Sun, 15 Mar 2020 08:10:21 +0000 Subject: [PATCH] Display the revision of the script to the sysop. --- exec/init-fidonet.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/exec/init-fidonet.js b/exec/init-fidonet.js index 03058eb588..2cc142b6e1 100644 --- a/exec/init-fidonet.js +++ b/exec/init-fidonet.js @@ -20,9 +20,10 @@ "use strict"; +const REVISION = "$Revision$".split(' ')[1]; var netname = "FidoNet"; var fidoaddr = load({}, 'fidoaddr.js'); -print("Initializing " + netname + " support in Synchronet"); +print(js.exec_file + " v" + REVISION + " Initializing " + netname + " support in Synchronet"); print("Use Ctrl-C to abort the process, if desired"); print("Reading Message Area configuration file: msgs.cnf"); -- GitLab