1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-23 22:52:11 +02:00

Get curl to be quiet already...

This commit is contained in:
Doug Schaefer 2005-02-09 22:31:12 +00:00
parent a95c935ee4
commit 3f424875d3
2 changed files with 3 additions and 3 deletions

View file

@ -108,7 +108,7 @@
<target name="upload" depends="init" unless="hasErrors"> <target name="upload" depends="init" unless="hasErrors">
<exec dir="${buildDirectory}" executable="curl"> <exec dir="${buildDirectory}" executable="curl">
<arg line="-u${cdtuser}:${cdtpasswd} ${remotedir}/index.html -o index.html"/> <arg line="-s -u${cdtuser}:${cdtpasswd} ${remotedir}/index.html -o index.html"/>
</exec> </exec>
<replace file="${buildDirectory}/index.html"> <replace file="${buildDirectory}/index.html">
<replacetoken><![CDATA[ <!-- add here -->]]></replacetoken> <replacetoken><![CDATA[ <!-- add here -->]]></replacetoken>
@ -120,7 +120,7 @@
<replacefilter token="@buildId@" value="${buildId}"/> <replacefilter token="@buildId@" value="${buildId}"/>
</replace> </replace>
<exec dir="${buildDirectory}" executable="curl"> <exec dir="${buildDirectory}" executable="curl">
<arg line="-u${cdtuser}:${cdtpasswd} -T index.html ${remotedir}/index.html"/> <arg line="-s -u${cdtuser}:${cdtpasswd} -T index.html ${remotedir}/index.html"/>
</exec> </exec>
<exec dir="${zipsdir}" executable="sh"> <exec dir="${zipsdir}" executable="sh">
<arg line="${basedir}/upload.sh ${cdtuser} ${cdtpasswd} ${remotedir}/${buildId}/"/> <arg line="${basedir}/upload.sh ${cdtuser} ${cdtpasswd} ${remotedir}/${buildId}/"/>

View file

@ -7,5 +7,5 @@
for i in * for i in *
do do
curl --ftp-create-dirs -u$1:$2 -T $i $3 curl -s --ftp-create-dirs -u$1:$2 -T $i $3
done done