From f13c12dbbef307a9b0f1c3a235ebe797b7c78822 Mon Sep 17 00:00:00 2001 From: Akmal Avloni Date: Fri, 13 Sep 2024 10:48:00 -0700 Subject: [PATCH] add additional info to flagNoInit --- internal/cmd/stack/flags.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/cmd/stack/flags.go b/internal/cmd/stack/flags.go index 140fdca..bfbee87 100644 --- a/internal/cmd/stack/flags.go +++ b/internal/cmd/stack/flags.go @@ -62,7 +62,7 @@ var flagRunLatest = &cli.BoolFlag{ var flagNoInit = &cli.BoolFlag{ Name: "noinit", - Usage: "Indicate whether to skip initialization for a task", + Usage: "Indicate whether to skip initialization for a task. Initializing the workspace before running a task means executing all the pre-initialization hooks as well as running the vendor-specific initialization procedure", Value: false, }