Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[platform-ui-dev] UI Workbench exportplugin.xml

While testing a patch to code in the workbench, I noticed that the 
exportplugin.xml script in the org.eclipse.ui.workbench project references 
the "icons" and "extensions" directories which don't exist. This causes the 
script to blow up.

I've attached a patch for the script that removes references to these 
directories.

- Jared
Index: exportplugin.xml
===================================================================
RCS file: /home/eclipse/org.eclipse.ui.workbench/scripts/exportplugin.xml,v
retrieving revision 1.2
diff -u -r1.2 exportplugin.xml
--- exportplugin.xml	5 Mar 2003 20:00:49 -0000	1.2
+++ exportplugin.xml	10 Mar 2003 19:25:28 -0000
@@ -1,4 +1,4 @@
-<project name="Export Workbench" default="export" basedir="..">
+ <project name="Export Workbench" default="export" basedir="..">
 	<target name="init">
 		<tstamp/>
 		<property name="destdir" value="../../plugin-export" />
@@ -21,12 +21,8 @@
 		/>
 		<copy file="plugin.xml" todir="${dest}"/>
 		<copy file="plugin.properties" todir="${dest}"/>
-		<copy todir="${dest}/icons">
-			<fileset dir="icons" />
-		</copy>
 		<zip zipfile="${dest}/workbenchsrc.zip">
 		    <fileset dir="Eclipse UI" />
-		    <fileset dir="extensions" />
 		    <fileset dir="Eclipse UI Editor Support" />
   		</zip>				
 	</target>

Back to the top