File tree Expand file tree Collapse file tree 1 file changed +0
-9
lines changed Expand file tree Collapse file tree 1 file changed +0
-9
lines changed Original file line number Diff line number Diff line change @@ -43,15 +43,13 @@ defaultMain = do
43
43
44
44
want [" short-help" ]
45
45
-- general purpose targets
46
- phony " submodules" updateSubmodules
47
46
phony " short-help" shortHelpMessage
48
47
phony " help" (helpMessage toolsVersions)
49
48
50
49
phony " check" (if isRunFromStack then checkStack args else checkCabal_ args)
51
50
52
51
phony " data" $ do
53
52
need [" show-options" ]
54
- need [" submodules" ]
55
53
need [" check" ]
56
54
liftIO $ putStrLn " Generation of hoogle data files is disabled for now."
57
55
-- if isRunFromStack then stackBuildData args else cabalBuildData args
@@ -60,7 +58,6 @@ defaultMain = do
60
58
versions
61
59
(\ version -> phony (" hls-" ++ version) $ do
62
60
need [" show-options" ]
63
- need [" submodules" ]
64
61
need [" check" ]
65
62
if isRunFromStack then
66
63
stackInstallHlsWithErrMsg (Just version) args
@@ -104,9 +101,3 @@ buildIcuMacosFix version args = execStackWithGhc_
104
101
, " --extra-lib-dirs=/usr/local/opt/icu4c/lib"
105
102
, " --extra-include-dirs=/usr/local/opt/icu4c/include"
106
103
] ++ args
107
-
108
- -- | update the submodules that the project is in the state as required by the `stack.yaml` files
109
- updateSubmodules :: Action ()
110
- updateSubmodules = do
111
- command_ [] " git" [" submodule" , " sync" ]
112
- command_ [] " git" [" submodule" , " update" , " --init" ]
You can’t perform that action at this time.
0 commit comments