diff --git a/.github/workflows/compare.yml b/.github/workflows/compare.yml index 53e3ab54..01b9db1f 100644 --- a/.github/workflows/compare.yml +++ b/.github/workflows/compare.yml @@ -24,7 +24,7 @@ jobs: with: repository: happyhavoc/satsuki latest: false - tag: v0.1.0 + tag: v0.1.1 fileName: satsuki.exe - name: Add satsuki to PATH run: | diff --git a/scripts/generate_function_diff.py b/scripts/generate_function_diff.py index c1e01398..6dd24d80 100755 --- a/scripts/generate_function_diff.py +++ b/scripts/generate_function_diff.py @@ -31,6 +31,7 @@ def generate_function_diff(fn_name): fn_name, ], stdout=out, + check=True, ) with open(reimpl_asm_path, "w") as out: out = subprocess.run( @@ -46,6 +47,7 @@ def generate_function_diff(fn_name): fn_name, ], stdout=out, + check=True, ) return orig_asm_path.read_text(), reimpl_asm_path.read_text()