Author: scabanovich
Date: 2009-10-07 13:06:56 -0400 (Wed, 07 Oct 2009)
New Revision: 17966
Modified:
trunk/common/plugins/org.jboss.tools.common.projecttemplates/src/org/jboss/tools/common/projecttemplates/ProjectTemplatesPlugin.java
Log:
https://jira.jboss.org/jira/browse/JBIDE-4977
Modified:
trunk/common/plugins/org.jboss.tools.common.projecttemplates/src/org/jboss/tools/common/projecttemplates/ProjectTemplatesPlugin.java
===================================================================
---
trunk/common/plugins/org.jboss.tools.common.projecttemplates/src/org/jboss/tools/common/projecttemplates/ProjectTemplatesPlugin.java 2009-10-07
15:56:31 UTC (rev 17965)
+++
trunk/common/plugins/org.jboss.tools.common.projecttemplates/src/org/jboss/tools/common/projecttemplates/ProjectTemplatesPlugin.java 2009-10-07
17:06:56 UTC (rev 17966)
@@ -63,8 +63,8 @@
copy(location, install, "lib", filter); //$NON-NLS-1$
} else {
UnzipOperation unzip = new UnzipOperation(install);
- unzip.execute(location, "templates");
- unzip.execute(location, "lib");
+ unzip.execute(location.getAbsolutePath(), "templates");
+ unzip.execute(location.getAbsolutePath(), "lib");
}
}