1
0
Fork 0
mirror of https://github.com/ethauvin/kobalt.git synced 2025-04-26 00:17:11 -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(generated)
}
log(2, "New flags from apt: " + result.joinToString(" "))
}
log(2, "New flags from apt: " + result.joinToString(" "))
return result
}
private val aptDependencies = hashMapOf<String, String>()
fun addAptDependency(dependencies: Dependencies, it: String) {
aptDependencies.put(dependencies.project.name, it)
}