Decouple update task from install
Now that Gradle runs Helma with the configured dependencies, updating the installation directory has become less crucial
This commit is contained in:
parent
196794cd93
commit
79b7e8092b
2 changed files with 6 additions and 6 deletions
|
@ -152,10 +152,6 @@ distZip {
|
|||
|
||||
installDist {
|
||||
dependsOn build
|
||||
|
||||
if (!System.getenv('CI')) {
|
||||
finalizedBy 'update'
|
||||
}
|
||||
}
|
||||
|
||||
task processSource(type: Sync) {
|
||||
|
@ -183,6 +179,8 @@ task processSource(type: Sync) {
|
|||
}
|
||||
|
||||
task update {
|
||||
dependsOn installDist
|
||||
|
||||
def rsyncArgs = ['--archive', '--filter', '- backups']
|
||||
|
||||
def confirm = {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue