From f438b5e355e91a6c9aec18d831c86b73818b0126 Mon Sep 17 00:00:00 2001 From: Steven Martin Date: Fri, 3 Jan 2025 19:00:14 -0500 Subject: [PATCH] update tbot init error message (#50722) --- 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 ab59ef70adbac..4b7f493bea8df 100644 --- a/tool/tbot/init.go +++ b/tool/tbot/init.go @@ -451,7 +451,7 @@ func onInit(globals *cli.GlobalArgs, init *cli.InitCommand) error { } } if target == nil { - return trace.NotFound("Could not find specified destination %q", init.InitDir) + return trace.NotFound("Initial directory %q must match a destination directory from the configuration file or --destination-dir parameter", init.InitDir) } }