blob: eca4da70587a798f59b03422690cfe1f4804093f [file] [log] [blame]
david_williamsddcb6622007-06-28 03:26:16 +00001
2if [ "$1" != "-doit" ] ; then
3 echo " This is a dry run. Add -doit to actually remove"
4 doit="--dry-run"
5else
6 doit=""
7fi
8
david_williamscca4f0e2007-06-28 03:30:24 +00009rsync $doit --delete --ignore-existing -rv ~/downloads/webtools/updates_mirror/plugins ~/downloads/webtools/updates
david_williamsddcb6622007-06-28 03:26:16 +000010
david_williamscca4f0e2007-06-28 03:30:24 +000011rsync $doit --delete --ignore-existing -rv ~/downloads/webtools/updates_mirror/features ~/downloads/webtools/updates
david_williamsddcb6622007-06-28 03:26:16 +000012
13if [ "$doit" = "--dry-run" ] ; then
14 echo " This was a dry run. Add -doit to actually remove"
15fi