| |
| # This bat file is to help get builds started "fresh". |
| # The -f means do not use ~/.cvsrc file -- this is just to ensure no "hidden options" |
| |
| # export is used, instead of checkout, just to avoid the CVS directories and since this code |
| # for a local build, there should never be a need to check it back in to CVS. |
| # |
| |
| # save serialized state |
| cp releng.control/*.ser . |
| |
| rm -fr releng.control |
| |
| cvs -f -d :pserver:anonymous@dev.eclipse.org:/cvsroot/webtools export -r HEAD releng.control |
| |
| restore serialized state |
| mv *.ser releng.control |
| |
| dos2unix releng.control/*.sh |
| chmod +x releng.control/*.sh |
| |