##// END OF EJS Templates
debugfs: add hardlink support reporting
Matt Mackall -
r19616:f959b60e default
parent child Browse files
Show More
@@ -1923,6 +1923,7 b' def debugfsinfo(ui, path = "."):'
1923 util.writefile('.debugfsinfo', '')
1923 util.writefile('.debugfsinfo', '')
1924 ui.write(('exec: %s\n') % (util.checkexec(path) and 'yes' or 'no'))
1924 ui.write(('exec: %s\n') % (util.checkexec(path) and 'yes' or 'no'))
1925 ui.write(('symlink: %s\n') % (util.checklink(path) and 'yes' or 'no'))
1925 ui.write(('symlink: %s\n') % (util.checklink(path) and 'yes' or 'no'))
1926 ui.write(('hardlink: %s\n') % (util.checknlink(path) and 'yes' or 'no'))
1926 ui.write(('case-sensitive: %s\n') % (util.checkcase('.debugfsinfo')
1927 ui.write(('case-sensitive: %s\n') % (util.checkcase('.debugfsinfo')
1927 and 'yes' or 'no'))
1928 and 'yes' or 'no'))
1928 os.unlink('.debugfsinfo')
1929 os.unlink('.debugfsinfo')
General Comments 0
You need to be logged in to leave comments. Login now