aboutsummaryrefslogtreecommitdiffstats
path: root/prosodyctl
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2014-07-04 23:13:51 +0200
committerKim Alvefur <zash@zash.se>2014-07-04 23:13:51 +0200
commitecf0dc01952f8e2c4013aa0964b70ac82b25ae04 (patch)
tree8b3df2b42b572dfe2fa60ba7e6ab15ef3c6eaf68 /prosodyctl
parentb1889326c4efeddbde16d83ee12fc9cb297ee63b (diff)
downloadprosody-ecf0dc01952f8e2c4013aa0964b70ac82b25ae04.tar.gz
prosody-ecf0dc01952f8e2c4013aa0964b70ac82b25ae04.zip
prosodyctl: Show relative paths in about
Diffstat (limited to 'prosodyctl')
-rwxr-xr-xprosodyctl10
1 files changed, 6 insertions, 4 deletions
diff --git a/prosodyctl b/prosodyctl
index bfb118c3..60bc0c08 100755
--- a/prosodyctl
+++ b/prosodyctl
@@ -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);