Commit 7f36a55a authored by Nikolay Igotti's avatar Nikolay Igotti

Allow building without COMPOSE_REPO_USERNAME and COMPOSE_REPO_KEY.

parent b1d66972
......@@ -48,10 +48,10 @@ class SkikoProperties(private val myProject: Project) {
get() = System.getenv("COMPOSE_REPO_URL") ?: "https://maven.pkg.jetbrains.space/public/p/compose/dev"
val composeRepoUserName: String
get() = System.getenv("COMPOSE_REPO_USERNAME")
get() = System.getenv("COMPOSE_REPO_USERNAME") ?: ""
val composeRepoKey: String
get() = System.getenv("COMPOSE_REPO_KEY")
get() = System.getenv("COMPOSE_REPO_KEY") ?: ""
val dependenciesDir: File
get() = myProject.rootProject.projectDir.resolve("dependencies")
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment