From 9e34bca32dbecd21bd06b9655a4acec71d80855b Mon Sep 17 00:00:00 2001 From: n-dusan Date: Mon, 16 Dec 2024 11:55:26 +0100 Subject: [PATCH] fix: set correct cli command to initialize archive --- src/utils/archive.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/archive.rs b/src/utils/archive.rs index 8f2de98..e334211 100644 --- a/src/utils/archive.rs +++ b/src/utils/archive.rs @@ -16,7 +16,7 @@ pub fn find_archive_path(path: &Path) -> anyhow::Result { } } anyhow::bail!(format!( - "{} is not inside a Stelae Archive. Run `stelae init` to create a archive at this location.", + "{} is not inside a Stelae Archive. Run `taf conf init` to create an archive at this location.", abs_path.to_string_lossy() )) }