-
Notifications
You must be signed in to change notification settings - Fork 220
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix: Do not print extraneous newlines when executionInfo output is hidden #519
fix: Do not print extraneous newlines when executionInfo output is hidden #519
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Overall looks good, just a small nitpick.
if execLog != "" { | ||
log.Info(execLog) | ||
} | ||
|
||
if err == nil && r.SkipSettings.SkipExecutionOutput() { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The check for execution skipping should go first.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done 👍
So I guess this means that the previous log.Info(execLog)
was not intended to be there - Because it seems that now the behavior just changed so that execLog
is never printed when the condition err == nil && r.SkipSettings.SkipExecutionOutput()
is met.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Oh god, I'm sorry. execLog
shouldn't be printed if it is empty. That's right. And if we have SkipExecutionOutput() then we don't print command output. So, your previous solution was correct. Let me fix that.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Haha yeah I thought something was fishy - glad it's sorted out now 😅
Closes #494
⚡ Summary
Prevents printing blank lines when
exececutionInfo
is not printed.Previously, two newlines would be printed for each command (Effectively
fmt.Println("\n")
). This fixes that.☑️ Checklist