Skip to content
This repository has been archived by the owner on Apr 13, 2023. It is now read-only.

Commit

Permalink
Try another way to fix the CI build
Browse files Browse the repository at this point in the history
Signed-off-by: David Festal <dfestal@redhat.com>
  • Loading branch information
davidfestal committed Feb 11, 2019
1 parent 4bff267 commit d3994d6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions dist/build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -659,14 +659,14 @@ Use this when NOT doing a release!">
<echo message="Adding module descriptor to ${module.jar}" if:set="module.jar"/>
<copy file="${module.jar}" tofile="${module.jar}.original" if:set="module.jar" verbose="true" />
<delete file="${module.jar}" verbose="true"/>
<jar destfile="${module.jar}.result" if:set="module.jar" filesetmanifest="merge">
<jar destfile="${module.jar}" if:set="module.jar" filesetmanifest="merge">
<zipfileset dir="${module.dir}"
includes="module.xml"
fullpath="META-INF/jbossmodules/${module.dir.relative}/module.xml"/>
<zipfileset src="${module.jar}.original" includes="**" excludes="META-INF/MANIFEST.MF"/>
<zipfileset src="${module.jar}.bnd.jar" includes="META-INF/MANIFEST.MF" unless:set="jigsaw"/>
</jar>
<copy file="${module.jar}.result" tofile="${module.jar}" overwrite="true" force="true" verbose="true"/>
<!-- <copy file="${module.jar}.result" tofile="${module.jar}" overwrite="true" force="true" verbose="true"/> -->

<property file="../common/common-build.properties" />
<path id="compiler.classpath">
Expand All @@ -688,9 +688,9 @@ Use this when NOT doing a release!">
<antcall target="sha1sum" if:set="module.sha1">
<param name="file" value="${module.jar}" />
</antcall>
<!--
<delete file="${module.jar}.original" failonerror="false" deleteonexit="true"/>
<delete file="${module.jar}.bnd.jar" failonerror="false" deleteonexit="true"/>
<!--
<delete file="${module.jar}.result" failonerror="false" deleteonexit="true"/>
-->
</target>
Expand Down

0 comments on commit d3994d6

Please sign in to comment.