Author: fmeschbe
Date: Thu Dec  6 03:20:43 2007
New Revision: 601704

URL: http://svn.apache.org/viewvc?rev=601704&view=rev
Log:
FELIX-431 Replace backslashes also in the name, not just the path

Modified:
    
felix/trunk/bundleplugin/src/main/java/org/apache/felix/bundleplugin/BundlePlugin.java

Modified: 
felix/trunk/bundleplugin/src/main/java/org/apache/felix/bundleplugin/BundlePlugin.java
URL: 
http://svn.apache.org/viewvc/felix/trunk/bundleplugin/src/main/java/org/apache/felix/bundleplugin/BundlePlugin.java?rev=601704&r1=601703&r2=601704&view=diff
==============================================================================
--- 
felix/trunk/bundleplugin/src/main/java/org/apache/felix/bundleplugin/BundlePlugin.java
 (original)
+++ 
felix/trunk/bundleplugin/src/main/java/org/apache/felix/bundleplugin/BundlePlugin.java
 Thu Dec  6 03:20:43 2007
@@ -643,6 +643,7 @@
                     // this is a workaround for a problem with bnd 0.0.189
                     if ( File.separatorChar != '/' )
                     {
+                        name = name.replace(File.separatorChar, '/');
                         path = path.replace(File.separatorChar, '/');
                     }
 


Reply via email to