We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9289d93 commit dc293dbCopy full SHA for dc293db
jabgui/build.gradle.kts
@@ -273,7 +273,9 @@ if (OperatingSystem.current().isWindows) {
273
tasks.register<Copy>("copyJPackageResourceDir") {
274
from("${projectDir}/buildres/windows") {
275
include("JabRef-post-image.wsf")
276
- filter<ReplaceTokens>(mapOf("jabRefRoot" to "$projectDir".replace('\\', '/')))
+ filter(ReplaceTokens::class, mapOf("tokens" to mapOf(
277
+ "jabRefRoot" to project.projectDir.toString().replace('\\', '/')
278
+ )))
279
}
280
281
exclude("JabRef-post-image.wsf")
0 commit comments