diff options
author | Kim Alvefur <zash@zash.se> | 2014-07-04 23:13:51 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2014-07-04 23:13:51 +0200 |
commit | ecf0dc01952f8e2c4013aa0964b70ac82b25ae04 (patch) | |
tree | 8b3df2b42b572dfe2fa60ba7e6ab15ef3c6eaf68 | |
parent | b1889326c4efeddbde16d83ee12fc9cb297ee63b (diff) | |
download | prosody-ecf0dc01952f8e2c4013aa0964b70ac82b25ae04.tar.gz prosody-ecf0dc01952f8e2c4013aa0964b70ac82b25ae04.zip |
prosodyctl: Show relative paths in about
-rwxr-xr-x | prosodyctl | 10 |
1 files changed, 6 insertions, 4 deletions
@@ -528,16 +528,18 @@ function commands.about(arg) return 1; end + local pwd = "."; local array = require "util.array"; local keys = require "util.iterators".keys; + local relpath = config.resolve_relative_path; print("Prosody "..(prosody.version or "(unknown version)")); print(""); print("# Prosody directories"); - print("Data directory: ", CFG_DATADIR or "./"); - print("Plugin directory:", CFG_PLUGINDIR or "./"); - print("Config directory:", CFG_CONFIGDIR or "./"); - print("Source directory:", CFG_SOURCEDIR or "./"); + print("Data directory: "..relpath(pwd, data_path)); + print("Plugin directory: "..relpath(pwd, CFG_PLUGINDIR or ".")); + print("Config directory: "..relpath(pwd, CFG_CONFIGDIR or ".")); + print("Source directory: "..relpath(pwd, CFG_SOURCEDIR or ".")); print(""); print("# Lua environment"); print("Lua version: ", _G._VERSION); |