new ledo, with ecr login

This commit is contained in:
2021-11-30 18:25:08 +01:00
parent 46be715e9e
commit aee0deba4a
2 changed files with 3 additions and 3 deletions

View File

@ -86,6 +86,6 @@ func (lx *LedoContext) ExecCmdSilent(cmd string, cmdArgs []string) error {
command := exec.Command(cmd, cmdArgs...)
command.Stdin = os.Stdin
command.Stdout = os.Stdout
command.Stderr = os.Stderr
command.Stderr = nil
return command.Run()
}