Mercurial > public > mercurial-scm > hg-stable
diff mercurial/commands.py @ 19616:f959b60e3025
debugfs: add hardlink support reporting
author | Matt Mackall <mpm@selenic.com> |
---|---|
date | Wed, 14 Aug 2013 12:42:22 -0500 |
parents | f37b5a17e6a0 |
children | ff00839e8bb3 |
line wrap: on
line diff
--- a/mercurial/commands.py Sun Aug 04 13:43:39 2013 +0200 +++ b/mercurial/commands.py Wed Aug 14 12:42:22 2013 -0500 @@ -1923,6 +1923,7 @@ util.writefile('.debugfsinfo', '') ui.write(('exec: %s\n') % (util.checkexec(path) and 'yes' or 'no')) ui.write(('symlink: %s\n') % (util.checklink(path) and 'yes' or 'no')) + ui.write(('hardlink: %s\n') % (util.checknlink(path) and 'yes' or 'no')) ui.write(('case-sensitive: %s\n') % (util.checkcase('.debugfsinfo') and 'yes' or 'no')) os.unlink('.debugfsinfo')