2022-11-07 11:04:48 +08:00
|
|
|
import shutil
|
|
|
|
import os
|
2022-12-28 03:12:07 +08:00
|
|
|
import win32con, win32api
|
2022-11-07 11:04:48 +08:00
|
|
|
|
|
|
|
shutil.rmtree(os.path.join('..', 'tools', 'Python27_32'))
|
|
|
|
shutil.rmtree(os.path.join('..', 'tools', 'gnu_gcc'))
|
2022-12-28 03:12:07 +08:00
|
|
|
win32api.SetFileAttributes(os.path.join('..', '.git'), win32con.FILE_ATTRIBUTE_NORMAL)
|