- Timestamp:
- Nov 3, 2010 4:18:52 PM (14 years ago)
- svn:sync-xref-src-repo-rev:
- 67365
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Installer/common/vboxapisetup.py
r33432 r33733 16 16 import shutil 17 17 from distutils.sysconfig import get_python_lib 18 comCache = os.path.join(get_python_lib(),'win32com', 'gen_py') 19 print "Cleaning COM cache at",comCache 20 shutil.rmtree(comCache, True) 18 comCache1 = os.path.join(get_python_lib(),'win32com', 'gen_py') 19 comCache2 = os.path.join(os.environ.get("TEMP", "c:\\tmp", 'gen_py')) 20 print "Cleaning COM cache at",comCache1,"and",comCache2 21 shutil.rmtree(comCache1, True) 22 shutil.rmtree(comCache2, True) 21 23 22 24 def patchWith(file,install,sdk):
Note:
See TracChangeset
for help on using the changeset viewer.