summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorIikka Eklund <iikka.eklund@digia.com>2012-08-21 10:16:30 +0300
committerLars Knoll <lars.knoll@nokia.com>2012-08-21 11:38:02 +0200
commit90ec1277d6bfc015b9dbc2ffd552a74bc36480b4 (patch)
tree5d4532c693ea8f6cb403ede21578532f21a47732
parent4dbe3146e0d95705c138783d803f519f193ac96d (diff)
Remove block of code that does not work
The removed block of code sometimes deleted invalid content. Remove it untill better solution is implemented. Change-Id: Ie09ba8fd5e34564fde9cfb70c3c057c71100c4ca Reviewed-by: Johanna Äijälä <johanna.aijala@digia.com> Reviewed-by: Lars Knoll <lars.knoll@nokia.com>
-rw-r--r--release-tools/create_installer.py11
1 files changed, 0 insertions, 11 deletions
diff --git a/release-tools/create_installer.py b/release-tools/create_installer.py
index ccb418a..36a66f4 100644
--- a/release-tools/create_installer.py
+++ b/release-tools/create_installer.py
@@ -327,17 +327,6 @@ def clean_work_dirs():
if os.path.exists(CONFIG_DIR_DST):
bldinstallercommon.remove_tree(CONFIG_DIR_DST)
print ' -> deleted old existing directory: ' + CONFIG_DIR_DST
- # delete sdk binary files
- fileList = os.listdir(SCRIPT_ROOT_DIR)
- for fname in fileList:
- if fname.startswith(SDK_NAME_ROOT):
- full_fn = SCRIPT_ROOT_DIR + os.sep + fname
- if os.path.isdir(full_fn):
- print ' -> deleted ' + full_fn
- bldinstallercommon.remove_tree(full_fn)
- else:
- print ' -> deleted ' + full_fn
- os.remove(full_fn)
##############################################################