mirror of
https://github.com/tfussell/xlnt.git
synced 2024-03-22 13:11:17 +08:00
11 lines
255 B
Plaintext
11 lines
255 B
Plaintext
|
#!/usr/bin/env python3
|
||
|
|
||
|
import os
|
||
|
import shutil
|
||
|
|
||
|
os.chdir(os.path.dirname(os.path.abspath(__file__)))
|
||
|
dirs = ['./bin', './lib', './build-scripts/cmake/build', './build-scripts/genie/xcode4']
|
||
|
for dir in dirs:
|
||
|
if os.path.isdir(dir): shutil.rmtree(dir)
|
||
|
|