Skip to content

Commit

Permalink
Merge pull request #167 from cunei/wip-gigahorseflag
Browse files Browse the repository at this point in the history
Add flag sbt.gigahorse.enabled, to optionally disable Gigahorse
  • Loading branch information
eed3si9n authored Sep 16, 2017
2 parents 4da187a + 0630b43 commit cb6428f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ object UpdateOptions {
interProjectFirst = true,
latestSnapshots = true,
cachedResolution = false,
gigahorse = true,
gigahorse = sys.props.get("sbt.gigahorse") map { _.toLowerCase == "true" } getOrElse true,
resolverConverter = PartialFunction.empty,
moduleResolvers = Map.empty
)
Expand Down

0 comments on commit cb6428f

Please sign in to comment.