~piastucki/bzr-eclipse/execute-bit

1
2
3
4
5
6
7
8
9
10
11
12
@ECHO OFF

IF EXIST xmloutput (
    rd /S xmloutput
)
bzr export -r tag:0.9.0 xmloutput lp:~bzr-eclipse/bzr-xmloutput/trunk
:; Copy the  SimpleXMLRPCServer.py module into xmloutput to support standalone bzr.exe
python -c "import SimpleXMLRPCServer; print SimpleXMLRPCServer.__file__.replace('.pyc', '.py')" > tmpFile
set /p SIMPLEXMLRPCSERVER=< tmpFile
del tmpFile
echo 
copy "%SIMPLEXMLRPCSERVER%" xmloutput