Do not run the update task in CI context
This commit is contained in:
parent
7f8c776c57
commit
bca560e577
1 changed files with 4 additions and 1 deletions
|
@ -147,8 +147,11 @@ distZip {
|
||||||
|
|
||||||
installDist {
|
installDist {
|
||||||
dependsOn build
|
dependsOn build
|
||||||
|
|
||||||
|
if (!System.getenv('CI')) {
|
||||||
finalizedBy 'update'
|
finalizedBy 'update'
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
run {
|
run {
|
||||||
classpath = files('launcher.jar')
|
classpath = files('launcher.jar')
|
||||||
|
|
Loading…
Add table
Reference in a new issue