From 2c7e342b189c321f3e063d329946474916ab8c00 Mon Sep 17 00:00:00 2001 From: Daniel Hougaard Date: Tue, 27 Aug 2024 20:10:11 +0400 Subject: [PATCH] Update run.go --- cli/packages/cmd/run.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli/packages/cmd/run.go b/cli/packages/cmd/run.go index eb563b118..cc52ce453 100644 --- a/cli/packages/cmd/run.go +++ b/cli/packages/cmd/run.go @@ -253,7 +253,7 @@ func executeSingleCommandWithEnvs(args []string, secretsCount int, env []string, err := startCmd() // Initial command start, if no --watch flag is passed, it will work like in old versions of infisical CLI. if err != nil { if err.Error() == INTERRUPT_ERR.Error() { - log.Debug().Msg(color.HiMagentaString("Process was terminated manually by the user")) + log.Debug().Msg(("Process was terminated manually by the user")) os.Exit(1) } util.HandleError(err, "Failed to start command")