mercurial/commands.py
changeset 29889 6f447b9ec263
parent 29885 42751543fa06
child 29890 31a6d5e14508
equal deleted inserted replaced
29888:8a84347b9907 29889:6f447b9ec263
  2447     """show information detected about current filesystem"""
  2447     """show information detected about current filesystem"""
  2448     util.writefile('.debugfsinfo', '')
  2448     util.writefile('.debugfsinfo', '')
  2449     ui.write(('exec: %s\n') % (util.checkexec(path) and 'yes' or 'no'))
  2449     ui.write(('exec: %s\n') % (util.checkexec(path) and 'yes' or 'no'))
  2450     ui.write(('symlink: %s\n') % (util.checklink(path) and 'yes' or 'no'))
  2450     ui.write(('symlink: %s\n') % (util.checklink(path) and 'yes' or 'no'))
  2451     ui.write(('hardlink: %s\n') % (util.checknlink(path) and 'yes' or 'no'))
  2451     ui.write(('hardlink: %s\n') % (util.checknlink(path) and 'yes' or 'no'))
  2452     ui.write(('case-sensitive: %s\n') % (util.checkcase('.debugfsinfo')
  2452     ui.write(('case-sensitive: %s\n') % (util.fscasesensitive('.debugfsinfo')
  2453                                 and 'yes' or 'no'))
  2453                                 and 'yes' or 'no'))
  2454     os.unlink('.debugfsinfo')
  2454     os.unlink('.debugfsinfo')
  2455 
  2455 
  2456 @command('debuggetbundle',
  2456 @command('debuggetbundle',
  2457     [('H', 'head', [], _('id of head node'), _('ID')),
  2457     [('H', 'head', [], _('id of head node'), _('ID')),