mirror of
https://github.com/mamoe/mirai.git
synced 2024-12-29 10:00:13 +08:00
Exclude .sf files
This commit is contained in:
parent
f15967b87c
commit
5982313d0a
@ -66,6 +66,11 @@ subprojects {
|
||||
dependsOn(compilation.compileKotlinTask)
|
||||
|
||||
configurations = mutableListOf(compilation.compileDependencyFiles as Configuration)
|
||||
|
||||
this.exclude { file ->
|
||||
file.name.endsWith(".sf", ignoreCase = true)
|
||||
.also { if (it) println("excluded ${file.name}") }
|
||||
}
|
||||
}
|
||||
|
||||
val githubUpload by tasks.creating {
|
||||
|
Loading…
Reference in New Issue
Block a user