mirror of https://github.com/sbt/sbt.git
don't consider password when determining if 'update' is uptodate
This commit is contained in:
parent
89c557d0b5
commit
69dd8b95d5
|
|
@ -42,7 +42,7 @@ package sbt
|
|||
*/
|
||||
object CacheIvy
|
||||
{
|
||||
def password(s: Option[String]) = s map Hash.apply
|
||||
def password(s: Option[String]) = new Array[Byte](0)
|
||||
def names(s: Iterable[Configuration]): Set[String] = s.map(_.name).toSet
|
||||
|
||||
import Cache._
|
||||
|
|
|
|||
Loading…
Reference in New Issue