Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [eclipse-mirrors] Trying to sync but It fails with the rsync script

Hi again,

if I set the script to only download "full_platform" I get an error again:




receiving file list ... rsync: link_stat
"/sites/download.eclipse.org/eclipseMirror/eclipse/*" (in
download.eclipse.org) failed: No such file or directory (2)
done




I think if you change this:

if [ $full_platform == yes ] ; then
        $RSYNC -rtlvp --delete $RSYNC_HOST::$RSYNC_PATH/eclipse/*
$mirror_path/eclipse/
fi

to this:

if [ $full_platform == yes ] ; then
        $RSYNC -rtlvp --delete $RSYNC_HOST::$RSYNC_PATH/eclipse/
$mirror_path/eclipse/
fi

it works.

Maybe you can fix this if it is correct.


Back to the top