From 486bd0c9e9a9a1674b1416c64eec2379471cf0a6 Mon Sep 17 00:00:00 2001 From: zach Date: Wed, 24 Sep 2025 17:26:49 +0800 Subject: [PATCH] fix: build cmd --- testing/src/runner/adapter_builder.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/testing/src/runner/adapter_builder.py b/testing/src/runner/adapter_builder.py index ffb4a98..3beb85f 100644 --- a/testing/src/runner/adapter_builder.py +++ b/testing/src/runner/adapter_builder.py @@ -46,7 +46,7 @@ class AdapterContractBuilder: try: # Running the bash script with the provided arguments result = subprocess.run( - [script_path, "-c", adapter_contract, "-s", signature, "-a", args], + cmd, cwd=self.src_path, capture_output=True, text=True,