Skip to content
This repository has been archived by the owner on Aug 23, 2018. It is now read-only.

Disable cabal's backjump limit. #248

Merged
merged 1 commit into from
Aug 8, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion installers/BuildFromSource.hs
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ makeRepos artifactDirectory version repos =

-- install all of the packages together in order to resolve transitive dependencies robustly
-- (install the dependencies a bit more quietly than the elm packages)
cabal ([ "install", "-j", "--only-dependencies", "--ghc-options=\"-w\"" ]
cabal ([ "install", "-j", "--only-dependencies", "--ghc-options=\"-w\"", "--max-backjumps=-1" ]
++ (if version <= "0.15.1" then [ "--constraint=fsnotify<0.2" ] else [])
++ map fst repos)
cabal ([ "install", "-j" ]
Expand Down