Skip to content

Commit

Permalink
Fix keydb build directory (#197)
Browse files Browse the repository at this point in the history
The clone and build directory for KeyDB has been 
updated to use all lowercase letters.

[ committed by @mellis13 ]
[ reviewed by @al-rigazzi  ]
  • Loading branch information
mellis13 authored May 13, 2022
1 parent 8798c28 commit 7b0f188
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion smartsim/_core/_install/builder.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 7b0f188

Please sign in to comment.