summaryrefslogtreecommitdiff
path: root/Command
diff options
context:
space:
mode:
authorGravatar Joey Hess <joeyh@joeyh.name>2017-04-07 18:03:09 -0400
committerGravatar Joey Hess <joeyh@joeyh.name>2017-04-07 18:16:11 -0400
commitf6af5f502094ba8e892e7a9e7407924a7f79ba67 (patch)
tree043c93236f7ae2b7ebf5f9dbc6b6d58abbaf3b62 /Command
parentc4efe38c7285fe501d15fa1fefdd643e05a81281 (diff)
version: Added "dependency versions" line.
This commit was sponsored by Anthony DeRobertis on Patreon.
Diffstat (limited to 'Command')
-rw-r--r--Command/Version.hs3
1 files changed, 2 insertions, 1 deletions
diff --git a/Command/Version.hs b/Command/Version.hs
index ece5fbb05..7af928750 100644
--- a/Command/Version.hs
+++ b/Command/Version.hs
@@ -10,7 +10,7 @@ module Command.Version where
import Command
import qualified Build.SysConfig as SysConfig
import Annex.Version
-import BuildFlags
+import BuildInfo
import Types.Key
import qualified Types.Backend as B
import qualified Types.Remote as R
@@ -63,6 +63,7 @@ showPackageVersion :: IO ()
showPackageVersion = do
vinfo "git-annex version" SysConfig.packageversion
vinfo "build flags" $ unwords buildFlags
+ vinfo "dependency versions" $ unwords dependencyVersions
vinfo "key/value backends" $ unwords $
map (formatKeyVariety . B.backendVariety) Backend.list
vinfo "remote types" $ unwords $ map R.typename Remote.remoteTypes