aboutsummaryrefslogtreecommitdiffstats
path: root/util/dependencies.lua
diff options
context:
space:
mode:
authorMatthew Wild <mwild1@gmail.com>2009-11-23 02:58:42 +0000
committerMatthew Wild <mwild1@gmail.com>2009-11-23 02:58:42 +0000
commita1cca576be8eeb34d63963f14785445d99bc355f (patch)
tree77312569d3307ac112bdc790eecdd6086f4ff52f /util/dependencies.lua
parent82063a0e17822147dcb9b96fcd0a3a0bfac1c227 (diff)
downloadprosody-a1cca576be8eeb34d63963f14785445d99bc355f.tar.gz
prosody-a1cca576be8eeb34d63963f14785445d99bc355f.zip
util.dependencies: Make the commands line up properly in the "missing dependency" output. Yes, this was the commit you didn't know you were waiting for!
Diffstat (limited to 'util/dependencies.lua')
-rw-r--r--util/dependencies.lua8
1 files changed, 6 insertions, 2 deletions
diff --git a/util/dependencies.lua b/util/dependencies.lua
index 5b07072f..cbdecc10 100644
--- a/util/dependencies.lua
+++ b/util/dependencies.lua
@@ -17,8 +17,12 @@ local function missingdep(name, sources, msg)
print("Prosody was unable to find "..tostring(name));
print("This package can be obtained in the following ways:");
print("");
- for k,v in pairs(sources) do
- print("", k, v);
+ local longest_platform = 0;
+ for platform in pairs(sources) do
+ longest_platform = math.max(longest_platform, #platform);
+ end
+ for platform, source in pairs(sources) do
+ print("", platform..":"..(" "):rep(4+longest_platform-#platform)..source);
end
print("");
print(msg or (name.." is required for Prosody to run, so we will now exit."));