We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent faef6ac commit 6369d1dCopy full SHA for 6369d1d
src/out.go
@@ -58,18 +58,18 @@ func newPmyOutFromRule(rule *pmyRule) pmyOut {
58
// buildMainCommand builds main command that concatenate
59
// all results of given command groups
60
func (out *pmyOut) buildMainCommand() string {
61
- res := "cat "
+ res := ""
62
pmyDelimiter := os.Getenv("PMY_TAG_DELIMITER")
63
for _, cg := range out.cmdGroups {
64
// if there is no tag, no need to use taggo
65
if out.allEmptyTag {
66
res += fmt.Sprintf(
67
- "<(%v)",
+ "%v ;",
68
cg.Stmt,
69
)
70
} else {
71
72
- "<(%v | taggo --color '%v' --tag '%v' --delimiter '%v') ",
+ "%v | taggo --color '%v' --tag '%v' --delimiter '%v' ;",
73
74
cg.TagColor,
75
cg.tagAligned,
0 commit comments