Merge pull request #167 from cunei/wip-gigahorseflag

Add flag sbt.gigahorse.enabled, to optionally disable Gigahorse
This commit is contained in:
eugene yokota 2017-09-16 01:14:25 -04:00 committed by GitHub
commit cb6428f9f2
1 changed files with 1 additions and 1 deletions

View File

@ -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
)