david_williams | b1a981c | 2007-10-23 19:55:06 +0000 | [diff] [blame^] | 1 | #!/bin/sh |
| 2 | |
| 3 | # this file is to run last, and just "hits" all major directories in old structure. |
| 4 | # There actually should be nothing copies here, unless it's some stray file such as |
| 5 | # a .project file under a directory ... but, just wanted to be complete. |
| 6 | # plus, it has the pleasent side effect of removing all directories, just for easy |
| 7 | # confirmation that all has been accounted for. It has to be ran last, naturally |
| 8 | # (or else it would simply copy everything to tempmisc). |
| 9 | |
| 10 | . mainparams.shsource |
| 11 | |
| 12 | . copyAndRemove.sh |
| 13 | |
| 14 | oldBaseDir=${oldcvsdir}/wst/components |
| 15 | newBaseDir=${newcvsdir}/webtools.releng/tempmisc |
| 16 | |
| 17 | wtpmodule= |
| 18 | oldDir=${oldBaseDir}/${wtpmodule} |
| 19 | newDir=${newBaseDir}/${wtpmodule} |
| 20 | copyAndRemove $oldDir $newDir |
| 21 | |
| 22 | oldBaseDir=${oldcvsdir}/jst/components |
| 23 | newBaseDir=${newcvsdir}/webtools.releng/tempmisc |
| 24 | |
| 25 | wtpmodule= |
| 26 | oldDir=${oldBaseDir}/${wtpmodule} |
| 27 | newDir=${newBaseDir}/${wtpmodule} |
| 28 | copyAndRemove $oldDir $newDir |
| 29 | |
| 30 | oldBaseDir=${oldcvsdir}/org.eclipse.wtp |
| 31 | newBaseDir=${newcvsdir}/webtools.releng/tempmisc |
| 32 | |
| 33 | wtpmodule= |
| 34 | oldDir=${oldBaseDir}/${wtpmodule} |
| 35 | newDir=${newBaseDir}/${wtpmodule} |
| 36 | copyAndRemove $oldDir $newDir |
| 37 | |
| 38 | oldBaseDir=${oldcvsdir}/wst |
| 39 | newBaseDir=${newcvsdir}/webtools.releng/tempmisc |
| 40 | |
| 41 | wtpmodule= |
| 42 | oldDir=${oldBaseDir}/${wtpmodule} |
| 43 | newDir=${newBaseDir}/${wtpmodule} |
| 44 | copyAndRemove $oldDir $newDir |
| 45 | |
| 46 | oldBaseDir=${oldcvsdir}/jst |
| 47 | newBaseDir=${newcvsdir}/webtools.releng/tempmisc |
| 48 | |
| 49 | wtpmodule= |
| 50 | oldDir=${oldBaseDir}/${wtpmodule} |
| 51 | newDir=${newBaseDir}/${wtpmodule} |
| 52 | copyAndRemove $oldDir $newDir |
| 53 | |