Show More
@@ -911,6 +911,8 b' def debugformat(ui, repo, **opts):' | |||
|
911 | 911 | @command('debugfsinfo', [], _('[PATH]'), norepo=True) |
|
912 | 912 | def debugfsinfo(ui, path="."): |
|
913 | 913 | """show information detected about current filesystem""" |
|
914 | ui.write(('path: %s\n') % path) | |
|
915 | ui.write(('mounted on: %s\n') % (util.getfsmountpoint(path) or '(unknown)')) | |
|
914 | 916 | ui.write(('exec: %s\n') % (util.checkexec(path) and 'yes' or 'no')) |
|
915 | 917 | ui.write(('fstype: %s\n') % (util.getfstype(path) or '(unknown)')) |
|
916 | 918 | ui.write(('symlink: %s\n') % (util.checklink(path) and 'yes' or 'no')) |
General Comments 0
You need to be logged in to leave comments.
Login now