Skip to content

Commit

Permalink
Use LC_ALL instead of LC_COLLATE
Browse files Browse the repository at this point in the history
  • Loading branch information
mernst committed Oct 31, 2023
1 parent 213f818 commit bf878f8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/python/repo.py
Original file line number Diff line number Diff line change
Expand Up @@ -408,7 +408,7 @@ def compute_tree_fingerprint(self) -> str:
"""
assert self.repo_path.exists()
command = (
"sha256sum <(export LC_COLLATE=C; cd "
"sha256sum <(export LC_ALL=C; cd "
+ str(self.repo_path)
+ " ;find . -type f -not -path '*/\\.git*' -exec sha256sum {} \\; | sort)"
)
Expand Down

0 comments on commit bf878f8

Please sign in to comment.