From ce8a1b21139a10650cf0b3d7a98598115029fe13 Mon Sep 17 00:00:00 2001 From: stevenGravy Date: Fri, 3 Jan 2025 06:55:29 -0500 Subject: [PATCH] update tbot init error message --- tool/tbot/init.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tool/tbot/init.go b/tool/tbot/init.go index 91798ac5caeb9..a82ac7858c22e 100644 --- a/tool/tbot/init.go +++ b/tool/tbot/init.go @@ -446,7 +446,7 @@ func onInit(botConfig *config.BotConfig, cf *config.CLIConf) error { } } if target == nil { - return trace.NotFound("Could not find specified destination %q", cf.InitDir) + return trace.NotFound("Initial directory %q must match a destination directory from the configuration file or --destination-dir parameter", cf.InitDir) } }