diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2021-01-30 06:41:13 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2021-01-30 06:41:13 +0000 |
commit | 110f2a64b57a8781ccbe1040021d5baaec761e01 (patch) | |
tree | d9bf0d538aff0d47e28ea2da949c00955bf920d4 /pre_commit/git.py | |
parent | Adding upstream version 2.9.3. (diff) | |
download | pre-commit-110f2a64b57a8781ccbe1040021d5baaec761e01.tar.xz pre-commit-110f2a64b57a8781ccbe1040021d5baaec761e01.zip |
Adding upstream version 2.10.0.upstream/2.10.0
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'pre_commit/git.py')
-rw-r--r-- | pre_commit/git.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pre_commit/git.py b/pre_commit/git.py index 5096274..bec816c 100644 --- a/pre_commit/git.py +++ b/pre_commit/git.py @@ -61,7 +61,7 @@ def get_root() -> str: 'git failed. Is it installed, and are you in a Git repository ' 'directory?', ) - if os.path.commonpath((root, git_dir)) == git_dir: + if os.path.samefile(root, git_dir): raise FatalError( 'git toplevel unexpectedly empty! make sure you are not ' 'inside the `.git` directory of your repository.', |