aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--packaging-tools/bldinstallercommon.py11
1 files changed, 1 insertions, 10 deletions
diff --git a/packaging-tools/bldinstallercommon.py b/packaging-tools/bldinstallercommon.py
index ddad07a89..a3518dfd8 100644
--- a/packaging-tools/bldinstallercommon.py
+++ b/packaging-tools/bldinstallercommon.py
@@ -365,16 +365,7 @@ def remove_tree(path):
if os.path.isdir(path) and os.path.exists(path):
if IS_WIN_PLATFORM:
path = win32api.GetShortPathName(path.replace('/', '\\'))
- #a funny thing is that rmdir does not set an exitcode it is just using the last set one
- try:
- runCommand(['rmdir', path, '/S', '/Q'], SCRIPT_ROOT_DIR, onlyErrorCaseOutput=True)
- except:
- traceback.print_exc()
- pass
- else:
- #shutil.rmtree(path)
- runCommand(['rm', '-rf', path], SCRIPT_ROOT_DIR, onlyErrorCaseOutput=True)
- return not os.path.exists(path)
+ shutil.rmtree(path)
###############################