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

Commit 3246eac

Browse files
committed
Use legacy cabal commands, despite warnings
"cabal update" and "cabal install" will generate warnings on newer cabal-install versions, but still work. The "cabal v1-update" and "cabal v1-install" commands are not supported by older cabal-install. So, until we have the next gen cabal-helper, we will have to put up with some warnings when installing with the newer cabal-install.
1 parent df6da63 commit 3246eac

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -99,8 +99,8 @@ submodules:
9999
## NOTE 3: This is needed for stack only projects too
100100
cabal:
101101
stack install cabal-install
102-
cabal v1-update
103-
cabal v1-install Cabal-2.4.1.0 --with-compiler=$(GHC)
102+
cabal update
103+
cabal install Cabal-2.4.1.0 --with-compiler=$(GHC)
104104
.PHONY: cabal
105105

106106
# ------------------------------------------------------

0 commit comments

Comments
 (0)