@@ -17,8 +17,8 @@ import qualified Paths_haskell_language_server as Meta
1717import System.Directory
1818import System.Info
1919
20- hieVersion :: String
21- hieVersion =
20+ hlsVersion :: String
21+ hlsVersion =
2222 let commitCount = $ gitCommitCount
2323 in concat $ concat
2424 [ [$ (simpleVersion Meta. version)]
@@ -27,13 +27,13 @@ hieVersion =
2727 , [" (" ++ commitCount ++ " commits)" | commitCount /= (" 1" :: String ) &&
2828 commitCount /= (" UNKNOWN" :: String )]
2929 , [" " , display buildArch]
30- , [" " , hieGhcDisplayVersion ]
30+ , [" " , hlsGhcDisplayVersion ]
3131 ]
3232
3333-- ---------------------------------------------------------------------
3434
35- hieGhcDisplayVersion :: String
36- hieGhcDisplayVersion = compilerName ++ " -" ++ VERSION_ghc
35+ hlsGhcDisplayVersion :: String
36+ hlsGhcDisplayVersion = compilerName ++ " -" ++ VERSION_ghc
3737
3838getProjectGhcVersion :: Bios. Cradle Bios. CabalHelper -> IO String
3939getProjectGhcVersion crdl =
@@ -42,8 +42,8 @@ getProjectGhcVersion crdl =
4242 (execProjectGhc crdl [" --numeric-version" ])
4343
4444
45- hieGhcVersion :: String
46- hieGhcVersion = VERSION_ghc
45+ hlsGhcVersion :: String
46+ hlsGhcVersion = VERSION_ghc
4747
4848-- ---------------------------------------------------------------------
4949
0 commit comments