Fix pre-commit install on subst drives

This commit is contained in:
Anthony Sottile
2021-02-23 18:52:24 -08:00
parent 0047fa35dd
commit f9fbe18abf
2 changed files with 15 additions and 2 deletions

View File

@@ -52,10 +52,10 @@ def get_root() -> str:
# "rev-parse --show-cdup" to get the appropriate path, but must perform
# an extra check to see if we are in the .git directory.
try:
root = os.path.realpath(
root = os.path.abspath(
cmd_output('git', 'rev-parse', '--show-cdup')[1].strip(),
)
git_dir = os.path.realpath(get_git_dir())
git_dir = os.path.abspath(get_git_dir())
except CalledProcessError:
raise FatalError(
'git failed. Is it installed, and are you in a Git repository '