Skip to content

Commit

Permalink
fix CI build using cabal 3.10.2
Browse files Browse the repository at this point in the history
by appending || true to cabal install
  • Loading branch information
rudymatela committed Jan 26, 2024
1 parent e094f59 commit 0eaea16
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion mk/haskell.mk
Original file line number Diff line number Diff line change
Expand Up @@ -92,8 +92,9 @@ depend:
install-dependencies:
if [ -n "$(INSTALL_DEPS)" ]; then \
cabal update && \
$(CABAL_INSTALL) $(INSTALL_DEPS); \
$(CABAL_INSTALL) $(INSTALL_DEPS) || true; \
fi
# above, "|| true" is needed for cabal >= 3.10.2

# haddock rules
haddock: doc/index.html
Expand Down

0 comments on commit 0eaea16

Please sign in to comment.