keycloak-aplcache

Merge pull request #280 from stianst/master KEYCLOAK-355

3/11/2014 6:52:52 AM

Changes

Details

diff --git a/distribution/modules/lib.xml b/distribution/modules/lib.xml
index c28dcf8..1883476 100755
--- a/distribution/modules/lib.xml
+++ b/distribution/modules/lib.xml
@@ -104,7 +104,7 @@
         <attribute name="slot"/>
         <![CDATA[
             name = attributes.get("name");
-            name = name.replace(".", "/");
+            name = name.replace(/\./g, "/");
             project.setProperty("current.module.path", name + "/" + attributes.get("slot"));
         ]]>
     </scriptdef>
@@ -114,7 +114,7 @@
         <attribute name="slot"/>
         <![CDATA[
             name = attributes.get("name");
-            name = name.replace(".", "/");
+            name = name.replace(/\./g, "/");
             project.setProperty("current.bundle.path", name + "/" + attributes.get("slot"));
         ]]>
     </scriptdef>