~ubuntu-branches/ubuntu/quantal/python2.7/quantal

« back to all changes in this revision

Viewing changes to Tools/buildbot/clean.bat

  • Committer: Bazaar Package Importer
  • Author(s): Matthias Klose
  • Date: 2011-05-30 06:44:23 UTC
  • mto: (27.1.6 oneiric) (36.1.11 sid)
  • mto: This revision was merged to the branch mainline in revision 32.
  • Revision ID: james.westby@ubuntu.com-20110530064423-zj6auh76957umtm4
Tags: upstream-2.7.2~rc1
ImportĀ upstreamĀ versionĀ 2.7.2~rc1

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
@rem Used by the buildbot "clean" step.
2
 
call "%VS90COMNTOOLS%vsvars32.bat"
3
 
@echo Deleting .pyc/.pyo files ...
4
 
del /s Lib\*.pyc Lib\*.pyo
5
 
cd PCbuild
6
 
vcbuild /clean pcbuild.sln "Release|Win32"
7
 
vcbuild /clean pcbuild.sln "Debug|Win32"
 
1
@rem Used by the buildbot "clean" step.
 
2
call "%VS90COMNTOOLS%vsvars32.bat"
 
3
@echo Deleting .pyc/.pyo files ...
 
4
del /s Lib\*.pyc Lib\*.pyo
 
5
@echo Deleting test leftovers ...
 
6
rmdir /s /q build
 
7
cd PCbuild
 
8
vcbuild /clean pcbuild.sln "Release|Win32"
 
9
vcbuild /clean pcbuild.sln "Debug|Win32"
 
10
cd ..