From f116a396d7d89229ac5bd557de20920a963f92c0 Mon Sep 17 00:00:00 2001 From: Shaun Sharples Date: Fri, 3 May 2019 18:46:07 +0200 Subject: [PATCH] drop extraneous argument to build --- install.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install.hs b/install.hs index 3eed8fcf7..bc8d79e4a 100755 --- a/install.hs +++ b/install.hs @@ -222,7 +222,7 @@ cabalInstallHie versionNumber = do cabalBuildDoc :: Action () cabalBuildDoc = do - execCabal_ ["new-build", "hoogle", "generate"] + execCabal_ ["new-build", "hoogle"] execCabal_ ["new-exec", "hoogle", "generate"] cabalTest :: VersionNumber -> Action ()