Skip to content

Commit

Permalink
Final fix for everything to work in windows
Browse files Browse the repository at this point in the history
  • Loading branch information
mohithg committed Nov 14, 2021
1 parent eb29f74 commit f08eabd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fds/services/dvc_service.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ def __should_skip_list_add(self, directory: str) -> bool:
:param directory: the name of the dir
:return: True if we should skip, else return False
"""
if os.path.abspath(directory) == self.repo_path:
if os.path.samefile(os.path.abspath(directory), self.repo_path):
return True
git_output = check_git_ignore(directory)
if convert_bytes_to_string(git_output.stdout) != '':
Expand Down

0 comments on commit f08eabd

Please sign in to comment.