mirror of
https://github.com/topjohnwu/Magisk.git
synced 2024-11-23 10:05:23 +00:00
Default to config.prop in buildSrc
This commit is contained in:
parent
8a2a6d9232
commit
a013696a41
@ -25,11 +25,9 @@ object Config {
|
||||
class MagiskPlugin : Plugin<Project> {
|
||||
override fun apply(project: Project) {
|
||||
val configPath: String? by project
|
||||
configPath?.let {
|
||||
val config = File(it)
|
||||
if (config.exists())
|
||||
config.inputStream().use { s -> props.load(s) }
|
||||
}
|
||||
val config = configPath?.let { File(it) } ?: project.rootProject.file("config.prop")
|
||||
if (config.exists())
|
||||
config.inputStream().use { props.load(it) }
|
||||
|
||||
val repo = FileRepository(project.rootProject.file(".git"))
|
||||
val refId = repo.refDatabase.exactRef("HEAD").objectId
|
||||
|
Loading…
Reference in New Issue
Block a user