Skip to content
This repository was archived by the owner on Sep 15, 2021. It is now read-only.

Commit d76e00b

Browse files
author
Albert Schimpf
committed
Don't overwrite install task
1 parent 186c688 commit d76e00b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,13 +64,13 @@ subprojects {
6464
apply from: 'gradle/jacoco-merge.gradle'
6565

6666
// local install
67-
task install(type: Copy) {
67+
task installLocal(type: Copy) {
6868
def homePath = System.properties['user.home']
6969
from("${buildDir}/install/scraper-nodes/lib")
7070
into("${homePath}/opt/lib/scraper/var")
7171
include('*.jar')
7272
}
73-
install.dependsOn(installDist);
73+
installLocal.dependsOn(installDist);
7474

7575

7676
task distribute(type: Zip) {

0 commit comments

Comments
 (0)