Skip to content

Commit

Permalink
nit
Browse files Browse the repository at this point in the history
  • Loading branch information
publicarray committed Jul 22, 2021
1 parent 198bac7 commit 03fefcc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion package/src/synoedit/utils.go
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ func ExecuteAction(appName string) string {
cmd.Stderr = &stderr
stdout, err := cmd.Output()
if err != nil {
logError(string(stdout) + stderr.String() + err.Error())
logError(string(stdout) + stderr.String() + "\n" + err.Error())
}
if len(app.Action.OutputFile) > 0 {
filePath := GetFilePath(appName, app.Action.OutputFile)
Expand Down

0 comments on commit 03fefcc

Please sign in to comment.