Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix UX issue when exec command fails to run as part of a deploy comma…
…nd (#6673) For the context, before the changes, the "Execution output" message was displayed on the same line as the spinner, e.g.: ``` ↪ Executing command: ◓ Executing command in container (command: exec-deploy)Execution output: /bin/sh: line 1: helm: command not found ✗ Executing command in container (command: exec-deploy) [8s] ✗ failed to execute (command: exec-deploy) ``` This is now fixed by ending the spinner as soon as possible, and then displaying the command output: ``` ↪ Executing command: ✗ Executing command in container (command: exec-deploy) [8s] Execution output: /bin/sh: line 1: helm: command not found ✗ failed to execute (command: exec-deploy) ```
- Loading branch information