File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -75,7 +75,7 @@ defaultMain = do
75
75
-- stack specific targets
76
76
-- Default `stack.yaml` uses ghc-8.8.2 and we can't build hls in windows
77
77
-- TODO: Enable for windows when it uses ghc-8.8.3
78
- when ( isRunFromStack && not isWindowsSystem) $
78
+ when isRunFromStack $
79
79
phony " dev" $ do
80
80
need [" show-options" ]
81
81
stackInstallHlsWithErrMsg Nothing args
Original file line number Diff line number Diff line change @@ -22,8 +22,8 @@ stackInstallHls mbVersionNumber args = do
22
22
Nothing -> do
23
23
execStackWithCfgFile_ " stack.yaml" $
24
24
[" install"
25
- , " haskell-language-server-wrapper"
26
- , " haskell-language-server" ] ++ args
25
+ , " : haskell-language-server-wrapper"
26
+ , " : haskell-language-server" ] ++ args
27
27
getGhcVersionOfCfgFile " stack.yaml" args
28
28
Just vn -> do
29
29
execStackWithGhc_ vn $ [" install" ] ++ args
You can’t perform that action at this time.
0 commit comments