We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 57950dc commit 23ad51cCopy full SHA for 23ad51c
tools/internal/localnet-orchestrator/src/helpers.rs
@@ -223,7 +223,9 @@ pub(crate) fn monorepo_root_path(arg: Option<PathBuf>) -> anyhow::Result<PathBuf
223
.next_back()
224
.context("attempted to execute orchestrator from the root of the filesystem")?;
225
if dir.as_os_str().to_string_lossy() != "nym" {
226
- bail!("localnet-orchestrator must be executed from the root of the nym repo!")
+ bail!(
227
+ "localnet-orchestrator must be executed from the root of the nym repo! the path is {maybe_path_canon:?}"
228
+ );
229
}
230
231
Ok(maybe_path)
0 commit comments