diff -r c4caf530b1c7 -r 5880318624c9 mercurial/debugcommands.py --- a/mercurial/debugcommands.py Fri Dec 29 22:54:14 2017 -0500 +++ b/mercurial/debugcommands.py Fri Dec 29 23:50:42 2017 -0500 @@ -911,6 +911,8 @@ @command('debugfsinfo', [], _('[PATH]'), norepo=True) def debugfsinfo(ui, path="."): """show information detected about current filesystem""" + ui.write(('path: %s\n') % path) + ui.write(('mounted on: %s\n') % (util.getfsmountpoint(path) or '(unknown)')) ui.write(('exec: %s\n') % (util.checkexec(path) and 'yes' or 'no')) ui.write(('fstype: %s\n') % (util.getfstype(path) or '(unknown)')) ui.write(('symlink: %s\n') % (util.checklink(path) and 'yes' or 'no'))