From f13c12dbbef307a9b0f1c3a235ebe797b7c78822 Mon Sep 17 00:00:00 2001 From: Akmal Avloni Date: Fri, 13 Sep 2024 10:48:00 -0700 Subject: [PATCH 1/2] 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, } From b030a575a472ff9fb6ac35019785ec04ef309e67 Mon Sep 17 00:00:00 2001 From: akmal-spacelift <164946548+akmal-spacelift@users.noreply.github.com> Date: Mon, 16 Sep 2024 09:01:56 -0700 Subject: [PATCH 2/2] Update flags.go --- 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 bfbee87..5a1926e 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. Initializing the workspace before running a task means executing all the pre-initialization hooks as well as running the vendor-specific initialization procedure", + Usage: "Any pre-initialization hooks as well the vendor-specific initialization procedure will be skipped", Value: false, }