don't consider password when determining if 'update' is uptodate

This commit is contained in:
Mark Harrah
2010-11-09 20:46:14 -05:00
parent 89c557d0b5
commit 69dd8b95d5
+1 -1
View File
@@ -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._