From bf60d226b875f77381a56b1385541f4866555370 Mon Sep 17 00:00:00 2001 From: Kim Alvefur Date: Sun, 9 Jan 2022 15:57:59 +0100 Subject: migrator: Reuse earlier usage text --- tools/migration/prosody-migrator.lua | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) (limited to 'tools/migration') diff --git a/tools/migration/prosody-migrator.lua b/tools/migration/prosody-migrator.lua index fe2adb3a..f5631bdf 100644 --- a/tools/migration/prosody-migrator.lua +++ b/tools/migration/prosody-migrator.lua @@ -34,6 +34,11 @@ end local default_config = (CFG_CONFIGDIR or ".").."/migrator.cfg.lua"; +local function usage() + print("Usage: " .. arg[0] .. " FROM_STORE TO_STORE"); + print("If no stores are specified, 'input' and 'output' are used."); +end + local startup = require "util.startup"; do startup.parse_args({ @@ -43,7 +48,7 @@ do startup.init_global_state(); prosody.process_type = "migrator"; if prosody.opts.help then - print("prosody-migrator [input] [output]") + usage(); os.exit(0); end startup.force_console_logging(); @@ -112,8 +117,7 @@ end if have_err then print(""); - print("Usage: "..arg[0].." FROM_STORE TO_STORE"); - print("If no stores are specified, 'input' and 'output' are used."); + usage(); print(""); print("The available stores in your migrator config are:"); print(""); -- cgit v1.2.3