From 245c9a94ebc20a6b8083dddc65dc0566acb04a81 Mon Sep 17 00:00:00 2001 From: blueloveTH Date: Wed, 24 May 2023 21:53:35 +0800 Subject: [PATCH] Update amalgamate.py --- amalgamate.py | 1 + 1 file changed, 1 insertion(+) diff --git a/amalgamate.py b/amalgamate.py index 5886e3ef..54fff62f 100644 --- a/amalgamate.py +++ b/amalgamate.py @@ -74,6 +74,7 @@ for i in ["src/export.h", "c_bindings/pocketpy_c.h", "c_bindings/pocketpy_c.cpp" with open("amalgamated/pocketpy.cpp", "wt", encoding='utf-8') as f: content = '\n\n'.join(content) content = content.replace('#include "export.h"', '') + content = content.replace('#include "pocketpy_c.h", '') f.write(content)