david_williams | 8a62f0d | 2006-06-28 05:07:27 +0000 | [diff] [blame^] | 1 | #!/bin/sh |
2 | |||||
3 | # script to copy update jars from their staging area to the releases area | ||||
4 | |||||
5 | fromDir=$HOME/downloads/webtools/testUpdates | ||||
6 | toDir=$HOME/downloads/webtools/milestones | ||||
7 | |||||
8 | cp -f -p -r -v --update $fromDir/features --target-directory=$toDir/ | ||||
9 | cp -f -p -r -v --update $fromDir/plugins --target-directory=$toDir/ | ||||
10 |