mirror of
https://github.com/corda/corda.git
synced 2024-12-28 00:38: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 non-text formats "as-is".
|
||||
*/
|
||||
from("$projectDir/package") {
|
||||
exclude '**/*.spec'
|
||||
exclude '**/*.sh'
|
||||
@ -151,6 +154,9 @@ task javapackage(dependsOn: 'distZip') {
|
||||
}
|
||||
|
||||
copy {
|
||||
/*
|
||||
* Expand tokens for text formats.
|
||||
*/
|
||||
from("$projectDir/package") {
|
||||
include '**/*.spec'
|
||||
include '**/*.sh'
|
||||
|
Loading…
Reference in New Issue
Block a user