From 7ada3343062d47569bf29740e98439b79f916c3c Mon Sep 17 00:00:00 2001 From: Anton Baliasnikov Date: Fri, 20 Dec 2024 11:02:46 +0000 Subject: [PATCH] more fixes --- etc/nix/container-tee_prover.nix | 2 +- zkstack_cli/crates/common/src/server.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/etc/nix/container-tee_prover.nix b/etc/nix/container-tee_prover.nix index cb8ebfb51549..ef6dc54916dc 100644 --- a/etc/nix/container-tee_prover.nix +++ b/etc/nix/container-tee_prover.nix @@ -25,7 +25,7 @@ nixsgxLib.mkSGXContainer { "--env-prefix" "TEE_PROVER_" "--" - "${tee_prover}/bin/zksync_tee_prover" + "${tee_prover}/core/bin/zksync_tee_prover" ]; log_level = "error"; diff --git a/zkstack_cli/crates/common/src/server.rs b/zkstack_cli/crates/common/src/server.rs index afc0e69fc17f..b8d9f98350b3 100644 --- a/zkstack_cli/crates/common/src/server.rs +++ b/zkstack_cli/crates/common/src/server.rs @@ -45,7 +45,7 @@ impl Server { where P: AsRef, { - let _dir_guard = shell.push_dir(self.code_path); + let _dir_guard = shell.push_dir(&self.code_path); if let Some(components) = self.components() { additional_args.push(format!("--components={}", components))