Skip to content

Commit

Permalink
Remove legacy hack from build.gradle installDist task
Browse files Browse the repository at this point in the history
The rationale for the "delete fileTree" hack no longer exists
because the conflicting files are not created anymore.
  • Loading branch information
battleofwizards committed Aug 14, 2019
1 parent 3cfe510 commit 9ef7f89
Showing 1 changed file with 0 additions and 11 deletions.
11 changes: 0 additions & 11 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -88,17 +88,6 @@ configure([project(':desktop'),
// copy generated shell scripts, e.g. `bisq-desktop` directly to the project
// root directory for discoverability and ease of use

// TODO @cbeams The copy task below fails because the copied files are conflicting with the project
// folder name. I temporarily delete those files as I think they are duplicated anyway (bisq-* are probably
// the one to use). Would be good if those files don't get created in the first place.
// The .bat files are also deleted.
delete fileTree(dir: "$destinationDir/bin", include: 'desktop*')
delete fileTree(dir: "$destinationDir/bin", include: 'monitor*')
delete fileTree(dir: "$destinationDir/bin", include: 'seednode*')
delete fileTree(dir: "$destinationDir/bin", include: 'pricenode*')
delete fileTree(dir: "$destinationDir/bin", include: 'statsnode*')
delete fileTree(dir: "$destinationDir/bin", include: 'relay*')

copy {
from "$destinationDir/bin"
into rootProject.projectDir
Expand Down

0 comments on commit 9ef7f89

Please sign in to comment.