Skip to content

Commit

Permalink
Build system fix: integration test failed when "!" was in the path of…
Browse files Browse the repository at this point in the history
… midpoint project
  • Loading branch information
martin-lizner committed Jul 28, 2016
1 parent 5d9a0be commit 26956e2
Showing 1 changed file with 2 additions and 1 deletion.
Expand Up @@ -504,7 +504,8 @@ private Set<URL> scanClassPathForBundles() {

// hack to split MANIFEST from name
try {
URL tmp = new URL(toUrl(u.getPath().split("!")[0]));
String upath = u.getPath();
URL tmp = new URL(toUrl(upath.substring(0, upath.lastIndexOf("!"))));
if (isThisBundleCompatible(tmp)) {
bundle.add(tmp);
} else {
Expand Down

0 comments on commit 26956e2

Please sign in to comment.