Merge "Allow for redirects to ftp servers"

This commit is contained in:
Jenkins 2013-10-12 15:38:39 +00:00 committed by Gerrit Code Review
commit 52956a2c3a

View File

@ -46,7 +46,9 @@ if [ "$rcode" = "200" ] ; then
echo $success echo $success
mv $tmp $dest mv $tmp $dest
fi fi
elif [ "$rcode" = "304" ] ; then # 213 is the response to a ftp MDTM command, curl outputs a 213 as the status
# if the url redirected to a ftp server and Not-Modified
elif [ "$rcode" = "304" -o "$rcode" = "213" ] ; then
echo "Server copy has not changed. Using locally cached $url" echo "Server copy has not changed. Using locally cached $url"
rm -f $tmp rm -f $tmp
else else