From 7b0f1882d2f36cf1b965aed7e396b3b632ec5f68 Mon Sep 17 00:00:00 2001 From: Matt Ellis Date: Thu, 12 May 2022 17:21:28 -0700 Subject: [PATCH] Fix keydb build directory (#197) The clone and build directory for KeyDB has been updated to use all lowercase letters. [ committed by @mellis13 ] [ reviewed by @al-rigazzi ] --- smartsim/_core/_install/builder.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/smartsim/_core/_install/builder.py b/smartsim/_core/_install/builder.py index adbd8a4b3..82eed5f7b 100644 --- a/smartsim/_core/_install/builder.py +++ b/smartsim/_core/_install/builder.py @@ -150,7 +150,7 @@ def build_from_git(self, git_url, branch): :param branch: branch to checkout :type branch: str """ - database_name = "KeyDB" if "KeyDB" in git_url else "redis" + database_name = "keydb" if "KeyDB" in git_url else "redis" database_build_path = Path(self.build_dir, database_name.lower()) # remove git directory if it exists as it should