blob: fcc699913b1d8d72b461d17c86960c588cda89a8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#!/usr/bin/env bash
# Contact: devurandom
METADATA_MIRROR=rsync://gentoo.kynes.de:800/gentoo-overlay-kde/metadata/cache/
if [[ "$(basename $(pwd))" != "Documentation" ]] ; then
echo "ERROR: This script is meant to be run from within Documentation/ !"
exit 1
fi
echo "Syncing KDE overlay metadata ..."
exec rsync --quiet --recursive --times --compress --delete-delay $METADATA_MIRROR ../metadata/cache/
|