david_williams | 8a62f0d | 2006-06-28 05:07:27 +0000 | [diff] [blame] | 1 | #!/bin/sh |
| 2 | |
| 3 | # script to run update, setting properties, for an individual project |
| 4 | |
| 5 | updateSite=$HOME/downloads/webtools/milestones |
| 6 | |
| 7 | eclipseLocation=$HOME/eclipse-ppc-rc7 |
| 8 | |
| 9 | |
| 10 | project="$1" |
| 11 | if [ "$project" != "" ] |
| 12 | then |
| 13 | |
| 14 | ant -f features-$project.xml -DeclipseLocation=$eclipseLocation -DlocalUpdateSitePath=$updateSite -Dosgi.arch=ppc -Dosgi.clean -Dosgi.debug=true -Declipse.consoleLog=true -DcontinueOnError=true |
| 15 | |
| 16 | |
| 17 | else |
| 18 | echo " Usage: $0 <project> (where project is wtp, jsf, or jpa)" |
| 19 | |
| 20 | fi |