From 3965669f124ebf3873c46ea7cb431cca060811d3 Mon Sep 17 00:00:00 2001 From: andrussal Date: Wed, 17 Dec 2025 17:32:17 +0100 Subject: [PATCH] core: fix shared assets binary paths --- testing-framework/core/src/nodes/executor.rs | 2 +- testing-framework/core/src/nodes/validator.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/testing-framework/core/src/nodes/executor.rs b/testing-framework/core/src/nodes/executor.rs index cd304ad..0b786df 100644 --- a/testing-framework/core/src/nodes/executor.rs +++ b/testing-framework/core/src/nodes/executor.rs @@ -29,7 +29,7 @@ fn binary_path() -> PathBuf { env_var: "NOMOS_EXECUTOR_BIN", binary_name: "nomos-executor", fallback_path: BIN_PATH, - shared_bin_subpath: "testing-framework/assets/stack/bin/nomos-executor", + shared_bin_subpath: "../assets/stack/bin/nomos-executor", }; BinaryResolver::resolve_path(&cfg) } diff --git a/testing-framework/core/src/nodes/validator.rs b/testing-framework/core/src/nodes/validator.rs index 4cbe020..0ff62dc 100644 --- a/testing-framework/core/src/nodes/validator.rs +++ b/testing-framework/core/src/nodes/validator.rs @@ -26,7 +26,7 @@ fn binary_path() -> PathBuf { env_var: "NOMOS_NODE_BIN", binary_name: "nomos-node", fallback_path: BIN_PATH, - shared_bin_subpath: "testing-framework/assets/stack/bin/nomos-node", + shared_bin_subpath: "../assets/stack/bin/nomos-node", }; BinaryResolver::resolve_path(&cfg) }