# HG changeset patch # User Matt Mackall # Date 1376502142 18000 # Node ID f959b60e3025547f1ba32e80613783baf61e63d9 # Parent 77d434760857ac26d268297489d1d93cb7334efe debugfs: add hardlink support reporting diff -r 77d434760857 -r f959b60e3025 mercurial/commands.py --- 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')