Skip to content
Snippets Groups Projects
Commit dc199f3b authored by dgelessus's avatar dgelessus
Browse files

Fix missing def in tycho_build.gradle

parent f4f20818
Branches
No related tags found
No related merge requests found
......@@ -205,7 +205,7 @@ def addRunTimeLib(String libPar, String projectPar) {
newMf.delete()
mf.eachLine {line ->
if (line ==~ /.*Bundle-ClassPath:.*\.jar.*/) {
libsInLine = line.replaceAll(/[\ \t]*Bundle-ClassPath:[\ \t]*/, '')
def libsInLine = line.replaceAll(/[\ \t]*Bundle-ClassPath:[\ \t]*/, '')
line = line.replaceFirst(/[^\ \t]*\.jar[\ \,]*/, dependencyFolder + libPar + ",\n " + libsInLine) // /[^\ \t]*.\.jar[\ \,]*/
} else {
if (line ==~ /.*Bundle-ClassPath: \.[\ \t]*/) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment