rename reccomp to reccmp

Sorry to everyone's muscle memory, but I think this is better. The idea for the name was "recomp compare", but it's too easy to read it as "recomp with a typo". This should fix that, as well as be slightly easier to write since it's shorter.
This commit is contained in:
itsmattkc
2023-06-21 14:36:09 -07:00
parent da3ad91b20
commit fa63d7e341
4 changed files with 3 additions and 3 deletions

View File

@@ -9,7 +9,7 @@ import os
import sys
parser = argparse.ArgumentParser(allow_abbrev=False,
description='Recomp Compare: compare an original EXE with a recompiled EXE + PDB.')
description='Recompilation Compare: compare an original EXE with a recompiled EXE + PDB.')
parser.add_argument('original', metavar='original-binary', help='The original binary')
parser.add_argument('recompiled', metavar='recompiled-binary', help='The recompiled binary')
parser.add_argument('pdb', metavar='recompiled-pdb', help='The PDB of the recompiled binary')