792 ui.write(('exec: %s\n') % (util.checkexec(path) and 'yes' or 'no')) |
792 ui.write(('exec: %s\n') % (util.checkexec(path) and 'yes' or 'no')) |
793 ui.write(('symlink: %s\n') % (util.checklink(path) and 'yes' or 'no')) |
793 ui.write(('symlink: %s\n') % (util.checklink(path) and 'yes' or 'no')) |
794 ui.write(('hardlink: %s\n') % (util.checknlink(path) and 'yes' or 'no')) |
794 ui.write(('hardlink: %s\n') % (util.checknlink(path) and 'yes' or 'no')) |
795 ui.write(('case-sensitive: %s\n') % (util.fscasesensitive('.debugfsinfo') |
795 ui.write(('case-sensitive: %s\n') % (util.fscasesensitive('.debugfsinfo') |
796 and 'yes' or 'no')) |
796 and 'yes' or 'no')) |
797 os.unlink('.debugfsinfo') |
797 util.tryunlink('.debugfsinfo') |
798 |
798 |
799 @command('debuggetbundle', |
799 @command('debuggetbundle', |
800 [('H', 'head', [], _('id of head node'), _('ID')), |
800 [('H', 'head', [], _('id of head node'), _('ID')), |
801 ('C', 'common', [], _('id of common node'), _('ID')), |
801 ('C', 'common', [], _('id of common node'), _('ID')), |
802 ('t', 'type', 'bzip2', _('bundle compression type to use'), _('TYPE'))], |
802 ('t', 'type', 'bzip2', _('bundle compression type to use'), _('TYPE'))], |