From fa63d7e34162bfbce5d4730f8b010a58b0c67065 Mon Sep 17 00:00:00 2001 From: itsmattkc <34096995+itsmattkc@users.noreply.github.com> Date: Wed, 21 Jun 2023 14:36:09 -0700 Subject: [PATCH] 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. --- .github/workflows/build.yml | 4 ++-- tools/{reccomp => reccmp}/cvdump.exe | Bin tools/{reccomp/reccomp.py => reccmp/reccmp.py} | 2 +- tools/{reccomp => reccmp}/template.html | 0 4 files changed, 3 insertions(+), 3 deletions(-) rename tools/{reccomp => reccmp}/cvdump.exe (100%) rename tools/{reccomp/reccomp.py => reccmp/reccmp.py} (99%) rename tools/{reccomp => reccmp}/template.html (100%) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index e865a1c0..91a218f5 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -60,8 +60,8 @@ jobs: C:\msys64\usr\bin\wget.exe https://legoisland.org/download/ISLE.EXE C:\msys64\usr\bin\wget.exe https://legoisland.org/download/LEGO1.DLL pip install capstone - python3 tools/reccomp/reccomp.py -H ISLEPROGRESS.HTML ISLE.EXE Release/ISLE.EXE Release/ISLE.PDB ISLE - python3 tools/reccomp/reccomp.py -H LEGO1PROGRESS.HTML LEGO1.DLL Release/LEGO1.DLL Release/LEGO1.PDB LEGO1 + python3 tools/reccmp/reccmp.py -H ISLEPROGRESS.HTML ISLE.EXE Release/ISLE.EXE Release/ISLE.PDB ISLE + python3 tools/reccmp/reccmp.py -H LEGO1PROGRESS.HTML LEGO1.DLL Release/LEGO1.DLL Release/LEGO1.PDB LEGO1 - name: Upload Artifact uses: actions/upload-artifact@master diff --git a/tools/reccomp/cvdump.exe b/tools/reccmp/cvdump.exe similarity index 100% rename from tools/reccomp/cvdump.exe rename to tools/reccmp/cvdump.exe diff --git a/tools/reccomp/reccomp.py b/tools/reccmp/reccmp.py similarity index 99% rename from tools/reccomp/reccomp.py rename to tools/reccmp/reccmp.py index 4e234a61..02189dfe 100755 --- a/tools/reccomp/reccomp.py +++ b/tools/reccmp/reccmp.py @@ -9,7 +9,7 @@ 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') diff --git a/tools/reccomp/template.html b/tools/reccmp/template.html similarity index 100% rename from tools/reccomp/template.html rename to tools/reccmp/template.html