From 1b3d7dd1ad95ab80e19ae428179a68e91da731d1 Mon Sep 17 00:00:00 2001 From: phm07 <22707808+phm07@users.noreply.github.com> Date: Mon, 19 Aug 2024 11:30:46 +0200 Subject: [PATCH] fix --- internal/state/actions.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/state/actions.go b/internal/state/actions.go index aebd2c5c..bf3a4f99 100644 --- a/internal/state/actions.go +++ b/internal/state/actions.go @@ -28,7 +28,7 @@ func (c *state) WaitForActions(cmd *cobra.Command, ctx context.Context, actions return nil } for _, action := range actions { - ui.SkipActionWaitMessage(action) + cmd.Println(ui.SkipActionWaitMessage(action)) } return nil }