Skip to content

Commit

Permalink
Use "curl" instead of <get> in order to use the system proxy settings
Browse files Browse the repository at this point in the history
See ukf-meta#439 for details
  • Loading branch information
Alejandro Perez committed Jun 25, 2024
1 parent c9ec827 commit 2eea3bf
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -1259,7 +1259,10 @@
-->
<target name="jenkins.triggerjob.publish">
<echo>Triggering Jenkins publication Job.</echo>
<get src="${jenkins.url.to.trigger.publication}" dest="${temp.dir}/get.out"/>
<!-- we do not use <get> here because it does not uses system proxy settings -->
<exec executable="curl" dir="${output.dir}" failonerror="true">
<arg value="${jenkins.url.to.trigger.publication}"/>
</exec>
</target>

<!--
Expand Down

0 comments on commit 2eea3bf

Please sign in to comment.