Skip to content

Commit 69b939e

Browse files
committed
add == as a separator
1 parent 26fd593 commit 69b939e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

main.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ func Run(procs []Process) *Pipeline {
153153
func ParseArgs(args []string) (procs []Process) {
154154
start := 0
155155
for i, arg := range args {
156-
if arg == ";;" {
156+
if arg == ";;" || arg == "==" {
157157
procs = append(procs, Process{
158158
Cmd: args[start],
159159
Args: args[start+1 : i],

0 commit comments

Comments
 (0)