diff options
author | Matthew Wild <mwild1@gmail.com> | 2009-11-23 02:58:42 +0000 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2009-11-23 02:58:42 +0000 |
commit | a1cca576be8eeb34d63963f14785445d99bc355f (patch) | |
tree | 77312569d3307ac112bdc790eecdd6086f4ff52f /util | |
parent | 82063a0e17822147dcb9b96fcd0a3a0bfac1c227 (diff) | |
download | prosody-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')
-rw-r--r-- | util/dependencies.lua | 8 |
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.")); |