Skip to content

Commit

Permalink
Merge pull request #541 from mwchase/mwchase-hg-modified-are-tracked
Browse files Browse the repository at this point in the history
Included modified files in hg sdist
  • Loading branch information
takluyver committed Jul 16, 2022
2 parents ad38f36 + 2ede088 commit fb949bd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion flit/vcs/hg.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ def _repo_paths_to_directory_paths(paths, directory):


def list_tracked_files(directory):
outb = check_output(['hg', 'status', '--clean', '--added', '--no-status'],
outb = check_output(['hg', 'status', '--clean', '--added', '--modified', '--no-status'],
cwd=str(directory))
paths = [os.fsdecode(l) for l in outb.strip().splitlines()]
return _repo_paths_to_directory_paths(paths, directory)
Expand Down

0 comments on commit fb949bd

Please sign in to comment.