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