summaryrefslogtreecommitdiffstats
path: root/BaseTools/Source/Python/UPT/TestInstall.py
diff options
context:
space:
mode:
authorHess Chen <hesheng.chen@intel.com>2017-08-10 16:36:47 +0800
committerYonghong Zhu <yonghong.zhu@intel.com>2017-08-12 12:38:26 +0800
commit566368148c014702f98d6c37a3934b1c1e60dfd4 (patch)
treea2ec0a254f68cc78c6b51f8299cb0353c5636a3d /BaseTools/Source/Python/UPT/TestInstall.py
parentef190542b4dbc4577ef7d1f99209199f0c1b6e66 (diff)
downloadedk2-566368148c014702f98d6c37a3934b1c1e60dfd4.tar.gz
edk2-566368148c014702f98d6c37a3934b1c1e60dfd4.tar.bz2
edk2-566368148c014702f98d6c37a3934b1c1e60dfd4.zip
BaseTools/UPT: Support Multiple Installation
Add a new feature to UPT to support installing multiple DIST packages in one time. Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Hess Chen <hesheng.chen@intel.com> Reviewed-by: Yonghong Zhu <yonghong.zhu@intel.com>
Diffstat (limited to 'BaseTools/Source/Python/UPT/TestInstall.py')
-rw-r--r--BaseTools/Source/Python/UPT/TestInstall.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/BaseTools/Source/Python/UPT/TestInstall.py b/BaseTools/Source/Python/UPT/TestInstall.py
index dae4415026..899cae56aa 100644
--- a/BaseTools/Source/Python/UPT/TestInstall.py
+++ b/BaseTools/Source/Python/UPT/TestInstall.py
@@ -1,7 +1,7 @@
# # @file
# Test Install distribution package
#
-# Copyright (c) 2016, Intel Corporation. All rights reserved.<BR>
+# Copyright (c) 2016 - 2017, Intel Corporation. All rights reserved.<BR>
#
# This program and the accompanying materials are licensed and made available
# under the terms and conditions of the BSD License which accompanies this
@@ -90,9 +90,9 @@ def Main(Options=None):
DistFile.Close()
if ContentZipFile:
ContentZipFile.Close()
- if GlobalData.gUNPACK_DIR:
- shutil.rmtree(GlobalData.gUNPACK_DIR)
- GlobalData.gUNPACK_DIR = None
+ for TempDir in GlobalData.gUNPACK_DIR:
+ shutil.rmtree(TempDir)
+ GlobalData.gUNPACK_DIR = []
Logger.Quiet(ST.MSG_REMOVE_TEMP_FILE_DONE)
if ReturnCode == 0:
Logger.Quiet(ST.MSG_FINISH)