core: fix shared assets binary paths

This commit is contained in:
andrussal 2025-12-17 17:32:17 +01:00
parent eca9711ad9
commit 3965669f12
2 changed files with 2 additions and 2 deletions

View File

@ -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)
}

View File

@ -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)
}