mirror of
https://github.com/sbt/sbt.git
synced 2026-08-28 17:13:56 +02:00
don't consider password when determining if 'update' is uptodate
This commit is contained in:
+1
-1
@@ -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._
|
||||
|
||||
Reference in New Issue
Block a user