This commit is contained in:
Emilv2 2021-01-15 23:43:23 +01:00 committed by GitHub
parent b55fb821e7
commit e8aadedd97
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -21,7 +21,7 @@
WINDOWS = system() == "Windows"
BLACK_BINARY = "black.exe" if WINDOWS else "black"
GIT_BIANRY = "git.exe" if WINDOWS else "git"
GIT_BINARY = "git.exe" if WINDOWS else "git"
LOG = logging.getLogger(__name__)
@ -160,7 +160,7 @@ async def git_checkout_or_rebase(
depth: int = 1,
) -> Optional[Path]:
"""git Clone project or rebase"""
git_bin = str(which(GIT_BIANRY))
git_bin = str(which(GIT_BINARY))
if not git_bin:
LOG.error("No git binary found")
return None