Skip to content

Commit

Permalink
add == as a separator
Browse files Browse the repository at this point in the history
  • Loading branch information
egonelbre committed Feb 9, 2017
1 parent 26fd593 commit 69b939e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ func Run(procs []Process) *Pipeline {
func ParseArgs(args []string) (procs []Process) {
start := 0
for i, arg := range args {
if arg == ";;" {
if arg == ";;" || arg == "==" {
procs = append(procs, Process{
Cmd: args[start],
Args: args[start+1 : i],
Expand Down

0 comments on commit 69b939e

Please sign in to comment.