From 5f89bcc4604ea9e439039d873e34a8c06b47c707 Mon Sep 17 00:00:00 2001 From: "Feng, Bob C" Date: Fri, 19 Jul 2019 09:10:28 +0800 Subject: BaseTools: Create ".cache" folder when initialize Build object BZ: https://bugzilla.tianocore.org/show_bug.cgi?id=1986 Create "Conf/.cache" folder as early as possible so that the later code do need to check if it exits and then create it. Signed-off-by: Bob Feng Cc: Michael D Kinney Cc: Liming Gao Reviewed-by: Michael D Kinney Reviewed-by: Liming Gao --- BaseTools/Source/Python/build/build.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'BaseTools/Source/Python/build/build.py') diff --git a/BaseTools/Source/Python/build/build.py b/BaseTools/Source/Python/build/build.py index d6006b651f..6bc528974d 100644 --- a/BaseTools/Source/Python/build/build.py +++ b/BaseTools/Source/Python/build/build.py @@ -773,7 +773,8 @@ class Build(): ConfDirectoryPath = mws.join(self.WorkspaceDir, 'Conf') GlobalData.gConfDirectory = ConfDirectoryPath GlobalData.gDatabasePath = os.path.normpath(os.path.join(ConfDirectoryPath, GlobalData.gDatabasePath)) - + if not os.path.exists(os.path.join(GlobalData.gConfDirectory, '.cache')): + os.makedirs(os.path.join(GlobalData.gConfDirectory, '.cache')) self.Db = WorkspaceDatabase() self.BuildDatabase = self.Db.BuildObject self.Platform = None -- cgit v1.2.3