mirror of
https://github.com/corda/corda.git
synced 2024-12-28 16:58:55 +00:00
Comment file copying vs file filtering during packaging.
This commit is contained in:
parent
2f82b58c9e
commit
1a78ca240a
@ -141,6 +141,9 @@ task javapackage(dependsOn: 'distZip') {
|
|||||||
}
|
}
|
||||||
|
|
||||||
copy {
|
copy {
|
||||||
|
/*
|
||||||
|
* Copy non-text formats "as-is".
|
||||||
|
*/
|
||||||
from("$projectDir/package") {
|
from("$projectDir/package") {
|
||||||
exclude '**/*.spec'
|
exclude '**/*.spec'
|
||||||
exclude '**/*.sh'
|
exclude '**/*.sh'
|
||||||
@ -151,6 +154,9 @@ task javapackage(dependsOn: 'distZip') {
|
|||||||
}
|
}
|
||||||
|
|
||||||
copy {
|
copy {
|
||||||
|
/*
|
||||||
|
* Expand tokens for text formats.
|
||||||
|
*/
|
||||||
from("$projectDir/package") {
|
from("$projectDir/package") {
|
||||||
include '**/*.spec'
|
include '**/*.spec'
|
||||||
include '**/*.sh'
|
include '**/*.sh'
|
||||||
|
Loading…
Reference in New Issue
Block a user