Use lazy val

This commit is contained in:
Eugene Yokota 2021-12-28 23:45:04 -05:00
parent 06a09b03dd
commit 515993498d
1 changed files with 1 additions and 1 deletions

View File

@ -218,6 +218,6 @@ object SysProp {
baseCache.getAbsoluteFile / "v1"
}
val sbtCredentialsEnv: Option[Credentials] =
lazy val sbtCredentialsEnv: Option[Credentials] =
sys.env.get("SBT_CREDENTIALS").map(raw => new FileCredentials(new File(raw)))
}