From 8aa86bb6d341be76520a2efdd6e2b40e7b7146e9 Mon Sep 17 00:00:00 2001 From: Danil Date: Thu, 11 Jul 2024 14:41:16 +0200 Subject: [PATCH] Update zk_toolbox/crates/zk_inception/src/messages.rs MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Matías Ignacio González --- zk_toolbox/crates/zk_inception/src/messages.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zk_toolbox/crates/zk_inception/src/messages.rs b/zk_toolbox/crates/zk_inception/src/messages.rs index 94614ee86e6f..d0b146c9a4c5 100644 --- a/zk_toolbox/crates/zk_inception/src/messages.rs +++ b/zk_toolbox/crates/zk_inception/src/messages.rs @@ -24,7 +24,7 @@ pub(super) const MSG_START_CONTAINERS_PROMPT: &str = pub(super) const MSG_CREATING_ECOSYSTEM: &str = "Creating ecosystem"; pub fn msg_created_ecosystem(name: &str) -> String { - format!("Ecosystem {name} created successfully (All subsequent commands should be executed from ecosystem folder `cd path/to/ecosystem/name`)") + format!("Ecosystem {name} created successfully (All subsequent commands should be executed from ecosystem folder `cd {name}`)") } pub(super) const MSG_CLONING_ERA_REPO_SPINNER: &str = "Cloning zksync-era repository...";