From d7259d5788a30250bbbe066bf267678eed3c158b Mon Sep 17 00:00:00 2001 From: Timothy Gonzalez <105177619+Timothy-Gonzalez@users.noreply.github.com> Date: Sat, 3 Feb 2024 06:26:05 -0600 Subject: [PATCH] Fix amalgamate workflow --- .github/workflows/ci.yaml | 1 - tools/amalgamate.py | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 090faa6..de760ca 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -35,7 +35,6 @@ jobs: make amalgamate rm -r src/* mv amalgamate/* src/ - mv amalgamate/* src/ make tests debug fi diff --git a/tools/amalgamate.py b/tools/amalgamate.py index 67672de..ca44a7b 100644 --- a/tools/amalgamate.py +++ b/tools/amalgamate.py @@ -85,7 +85,7 @@ def amalgamate(out_file: TextIOWrapper, filename: str, c: bool = False): os.makedirs(path.dirname(OUT_H), exist_ok=True) -print(f"Amalgamate to: {OUT_H}") +print(f"Amalgamate to: {OUT_H} and {OUT_C}") with open(OUT_H, "w") as h: h.write(HEADER)