Fix compilation error in BaseIvySpecification

This commit is contained in:
Andrew Johnson
2015-03-31 13:03:49 -04:00
parent e647234743
commit 5650f1bc8f
@@ -54,7 +54,7 @@ trait BaseIvySpecification extends Specification {
def ivyUpdateEither(module: IvySbt#Module): Either[UnresolvedWarning, UpdateReport] = {
// IO.delete(currentTarget)
val retrieveConfig = new RetrieveConfiguration(currentManaged, Resolver.defaultRetrievePattern)
val retrieveConfig = new RetrieveConfiguration(currentManaged, Resolver.defaultRetrievePattern, false)
val config = new UpdateConfiguration(Some(retrieveConfig), false, UpdateLogging.Full)
IvyActions.updateEither(module, config, UnresolvedWarningConfiguration(), LogicalClock.unknown, Some(currentDependency), log)
}