Skip to content

Commit

Permalink
Avoid use of absolute path where BND can't handle it
Browse files Browse the repository at this point in the history
BND when calculating the full path to savemanifest runs within the current
dir being the root of the project. Making this change ($buildDir -> build)
does not change the output but does make it work on Windows.

Fixes #734
  • Loading branch information
jonahgraham committed May 29, 2023
1 parent 6228349 commit 7fb4339
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gradle/manifest-gen.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jar.bnd (
'Bundle-Vendor': 'Eclipse LSP4J',
'Bundle-RequiredExecutionEnvironment': 'JavaSE-11',
"-exportcontents": "org.eclipse.lsp4j.*",
"-savemanifest": "$buildDir/tmp/bnd/MANIFEST.MF",
"-savemanifest": "build/tmp/bnd/MANIFEST.MF",
)

//------------------------------------------------------
Expand Down

0 comments on commit 7fb4339

Please sign in to comment.