diff options
author | Matthew Wild <mwild1@gmail.com> | 2020-01-19 15:27:16 +0000 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2020-01-19 15:27:16 +0000 |
commit | aa2d0321791db0042af7eb07b59e644fcfc544bc (patch) | |
tree | f89ced70369166fffa958836d5b10458e67f3b7c /prosody | |
parent | ea97a0e7280fe3012d68bd20e371e83ae71d4808 (diff) | |
download | prosody-aa2d0321791db0042af7eb07b59e644fcfc544bc.tar.gz prosody-aa2d0321791db0042af7eb07b59e644fcfc544bc.zip |
prosody/util.startup: Switch to parse_args() for --root and --config
Diffstat (limited to 'prosody')
-rwxr-xr-x | prosody | 6 |
1 files changed, 1 insertions, 5 deletions
@@ -43,11 +43,7 @@ if CFG_DATADIR then end end -if #arg > 0 and arg[1] ~= "--config" then - print("Unknown command-line option: "..tostring(arg[1])); - print("Perhaps you meant to use prosodyctl instead?"); - return 1; -end + local startup = require "util.startup"; local async = require "util.async"; |