Skip to content

Commit

Permalink
Fix build error
Browse files Browse the repository at this point in the history
  • Loading branch information
Xiaoying Gu committed May 3, 2011
1 parent c8f63a3 commit e40b2cb
Showing 1 changed file with 4 additions and 6 deletions.
Expand Up @@ -671,7 +671,6 @@
<include name="**/*"/>
</zipfileset>
</zip>
<delete dir="${runtime.tmp}" />
</target>

<target name="createBirtRuntimeNonOSGi">
Expand Down Expand Up @@ -699,13 +698,12 @@
<include name="*.jar"/>
</fileset>
</copy>

<zip destfile="${postingDirectory}/${buildId}/birt-runtime-non-osgi-${package.version}.zip">
<zipfileset dir="${OutputDir}/runtime_nonosgi" includes="**" />
</zip>
<zip destfile="${postingDirectory}/${buildId}/birt-runtime-non-osgi-${package.version}.zip">
<zipfileset dir="${OutputDir}/runtime_nonosgi" includes="**" />
</zip>

<delete dir="${OutputDir}/runtime_nonosgi" failonerror="false"/>
<delete dir="${runtime.tmp}/" failonerror="false"/>
<delete dir="${runtime.tmp}" failonerror="false"/>
</target>

<target name="createBirtRCP" unless="skip.build.rcp">
Expand Down

0 comments on commit e40b2cb

Please sign in to comment.