MCPcopy Create free account
hub / github.com/appdevforall/CodeOnTheGo / propOrEnv

Function propOrEnv

app/build.gradle.kts:75–78  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

73}
74
75fun propOrEnv(name: String): String =
76 project.findProperty(name) as String?
77 ?: System.getenv(name)
78 ?: ""
79
80val props =
81 Properties().apply {

Callers 1

build.gradle.ktsFile · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected