This commit is contained in:
Paul Gauthier 2023-07-05 13:36:00 -07:00
parent 21efc8d59e
commit 9ed19e63d0

View file

@ -951,7 +951,7 @@ class Coder:
# convert to appropriate os.sep, since git always normalizes to / # convert to appropriate os.sep, since git always normalizes to /
files = set(self.repo.git.ls_files().splitlines()) files = set(self.repo.git.ls_files().splitlines())
if os.sep == "/": if os.sep == "/":
return return files
return set(path.replace("/", os.sep) for path in files) return set(path.replace("/", os.sep) for path in files)
apply_update_errors = 0 apply_update_errors = 0