blob: 64b1da5c514fa2b3c19be5e4cb84db061d19bef8 (
plain)
1
2
3
4
5
6
7
|
#!/bin/bash
PWD=`pwd`
if [[ ${PWD/*\//} == Documentation ]]; then
rsync -av --delete rsync://slackie.soylent.eu/metadata/kde-testing/ ../metadata/cache
else
echo "this script is meant to be run from within Documentation/";
fi
|