fixed so that LICENSE.txt is included in extension zips

This commit is contained in:
ghidravore 2019-04-30 14:33:24 -04:00
parent 7c867cb19d
commit 0190825e01

View File

@ -765,6 +765,11 @@ subprojects { p ->
from (p.projectDir.toString() + "/build/data") { from (p.projectDir.toString() + "/build/data") {
into { getBaseProjectName(p) + "/data" } into { getBaseProjectName(p) + "/data" }
} }
// copy the LICENSE.txt file into the extension zip
from (p.projectDir.toString() + "/build/LICENSE.txt") {
into { getBaseProjectName(p) }
}
///////////////// /////////////////
// NATIVES // NATIVES