From dac53e40d00814b6791e5d0a47e0a81450142e41 Mon Sep 17 00:00:00 2001 From: Alva Swanson Date: Wed, 27 Dec 2023 10:02:01 +0100 Subject: [PATCH] Packaging: Disable incompatible Windows resources We had the same bug in Bisq 1. See: https://github.com/bisq-network/bisq/pull/6870 --- .../gradle/packaging/jpackage/package_formats/WindowsPackage.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-logic/packaging/src/main/kotlin/bisq/gradle/packaging/jpackage/package_formats/WindowsPackage.kt b/build-logic/packaging/src/main/kotlin/bisq/gradle/packaging/jpackage/package_formats/WindowsPackage.kt index 7b0aeae224..9e78798d9c 100644 --- a/build-logic/packaging/src/main/kotlin/bisq/gradle/packaging/jpackage/package_formats/WindowsPackage.kt +++ b/build-logic/packaging/src/main/kotlin/bisq/gradle/packaging/jpackage/package_formats/WindowsPackage.kt @@ -7,7 +7,7 @@ class WindowsPackage(private val resourcesPath: Path) : JPackagePackageFormatCon override fun createArgumentsForJPackage(packageFormat: PackageFormat): List = mutableListOf( - "--resource-dir", resourcesPath.toAbsolutePath().toString(), + // "--resource-dir", resourcesPath.toAbsolutePath().toString(), "--icon", resourcesPath.resolve("Bisq2.ico").toAbsolutePath().toString(), "--win-dir-chooser",