File tree 2 files changed +4
-4
lines changed
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -106,7 +106,7 @@ cd haskell-language-server
106
106
#### Building
107
107
108
108
Note, on first invocation of the build script with stack, a GHC is being installed for execution.
109
- The GHC used for the ` install.hs ` can be adjusted in ` ./install/shake .yaml ` by using a different resolver.
109
+ The GHC used for the ` install.hs ` can be adjusted in ` ./install/stack .yaml ` by using a different resolver.
110
110
111
111
Available commands can be seen with:
112
112
@@ -500,7 +500,7 @@ args = ["--lsp"]
500
500
Haskell-language-server can be used on itself. We provide
501
501
preset samples of `hie.yaml` for Cabal and Stack.
502
502
503
- Note : the `./install/` folder is not directly tied to the project so it has dedicated `./install/hie.yaml.[cbl|stack]`
503
+ Note : the `./install/` folder is not directly tied to the project so it has dedicated `./install/hie.yaml.[cbl|stack]`
504
504
templates.
505
505
506
506
# ### Using Cabal
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ stackInstallHls mbVersionNumber args = do
20
20
versionNumber <-
21
21
case mbVersionNumber of
22
22
Nothing -> do
23
- execStackWithCfgFile_ " stack.yaml" $
23
+ execStackWithCfgFile_ " stack.yaml" $
24
24
[" install"
25
25
, " :haskell-language-server-wrapper"
26
26
, " :haskell-language-server" ] ++ args
@@ -84,7 +84,7 @@ execStackWithCfgFile stackFile args =
84
84
85
85
-- | Execute a stack command with the same resolver as the build script
86
86
execStackShake :: CmdResult r => [String ] -> Action r
87
- execStackShake args = command [] " stack" (" --stack-yaml=install/shake .yaml" : args)
87
+ execStackShake args = command [] " stack" (" --stack-yaml=install/stack .yaml" : args)
88
88
89
89
-- | Execute a stack command with the same resolver as the build script, discarding the output
90
90
execStackShake_ :: [String ] -> Action ()
You can’t perform that action at this time.
0 commit comments