1
0
Fork 0
mirror of https://github.com/ethauvin/kobalt.git synced 2025-04-26 08:27:12 -07:00

Minor fix.

This commit is contained in:
Cedric Beust 2015-11-16 09:25:35 -08:00
parent eb04dc643b
commit c70ce4247d

View file

@ -38,12 +38,13 @@ public class AptPlugin @Inject constructor(val depFactory: DepFactory, val execu
result.add("-s") result.add("-s")
result.add(generated) result.add(generated)
} }
log(2, "New flags from apt: " + result.joinToString(" "))
} }
log(2, "New flags from apt: " + result.joinToString(" "))
return result return result
} }
private val aptDependencies = hashMapOf<String, String>() private val aptDependencies = hashMapOf<String, String>()
fun addAptDependency(dependencies: Dependencies, it: String) { fun addAptDependency(dependencies: Dependencies, it: String) {
aptDependencies.put(dependencies.project.name, it) aptDependencies.put(dependencies.project.name, it)
} }