We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent afead43 commit d8a3037Copy full SHA for d8a3037
1 file changed
src/Stack/Build/Haddock.hs
@@ -90,7 +90,8 @@ openHaddocksInBrowser bco pkgLocations buildTargets = do
90
getDocIndex
91
_ -> getDocIndex
92
$logInfo ("Opening " <> T.pack (toFilePath docFile) <> " in the browser.")
93
- void $ liftIO $ openBrowser (toFilePath docFile)
+ _ <- liftIO $ openBrowser (toFilePath docFile)
94
+ return ()
95
96
-- | Determine whether we should haddock for a package.
97
shouldHaddockPackage :: BuildOpts
0 commit comments