Merge pull request #6766 from eed3si9n/wip/lazyval

Use lazy val
This commit is contained in:
eugene yokota 2021-12-28 23:46:25 -05:00 committed by GitHub
commit a523fa8662
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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)))
}