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