Commit ec6f9c00 authored by Oleg Dzhimiev's avatar Oleg Dzhimiev
Browse files

added --ignore-existing to rsync so old files have to be updated manually

parent 25e0f182
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -19,6 +19,6 @@ done
for f in *.pdf; do cp $f $bkp_dir; done

echo "-------- $0: Upload --------"
rsync -a -f '- /*/' . $remote_dir
rsync --ignore-existing -a -f '- /*/' . $remote_dir

exit 0