libeufin

Integration and sandbox testing for FinTech APIs and data formats
Log | Files | Refs | Submodules | README | LICENSE

commit 56fd176f7904ca496ea35f12325c9c722e3d5bc7
parent 17976827de1fbcaf735882395287b9ad824ee824
Author: Marcello Stanisci <stanisci.m@gmail.com>
Date:   Wed, 15 Apr 2020 12:44:31 +0200

Suspending installation prefix.

Gradle just tries to _delete_ everything it finds
under the given prefix before copying there the
project files!

A safer logic is needed.

Diffstat:
Mnexus/build.gradle | 8++++++--
1 file changed, 6 insertions(+), 2 deletions(-)

diff --git a/nexus/build.gradle b/nexus/build.gradle @@ -45,9 +45,13 @@ application { mainClassName = "tech.libeufin.nexus.MainKt" } -installDist { +/* + installDist { destinationDir = file("${project.findProperty('prefix') ?: '/tmp'}") -} + preserve { + exclude '**' + } +}*/ dependencies { implementation project(":util")