Update run.go

This commit is contained in:
Daniel Hougaard
2024-08-27 20:11:27 +04:00
parent 68f768749b
commit 5c7cec0c81

View File

@@ -22,7 +22,7 @@ import (
"github.com/spf13/cobra"
)
var ManualInterruptErr = fmt.Errorf("signal: interrupt")
var ErrManualInterrupt = fmt.Errorf("signal: interrupt")
// runCmd represents the run command
var runCmd = &cobra.Command{
@@ -252,7 +252,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() == ManualInterruptErr.Error() {
if err.Error() == ErrManualInterrupt.Error() {
log.Debug().Msg(("Process was terminated manually by the user"))
os.Exit(1)
}
@@ -349,7 +349,7 @@ func executeMultipleCommandWithEnvs(fullCommand string, secretsCount int, env []
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() == ManualInterruptErr.Error() {
if err.Error() == ErrManualInterrupt.Error() {
log.Debug().Msg(("Process was terminated manually by the user"))
os.Exit(1)
}