Skip to content
This repository was archived by the owner on Oct 7, 2020. It is now read-only.

Commit 5f52a77

Browse files
committed
Disable dev target (using ghc-8.8.2) for windows
1 parent 0f5dedb commit 5f52a77

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

install/src/HieInstall.hs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,9 @@ defaultMain = do
8888
phony "hie" (need ["data", "latest"])
8989

9090
-- stack specific targets
91-
when isRunFromStack $ do
91+
-- Default `stack.yaml` uses ghc-8.8.2 and we can't build hie in windows
92+
-- TODO: Enable for windows when it uses ghc-8.8.3
93+
when (isRunFromStack && not isWindowsSystem) $ do
9294

9395
phony "dev" $ stackInstallHieWithErrMsg Nothing
9496

0 commit comments

Comments
 (0)