You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
### NOTE: It specifically has to be "wgo" directly after "::" for a parallel command to be started
245
+
246
+
Even if wgo was invoked with `go tool wgo` or its full binary path (e.g. `/usr/local/bin/wgo`), wgo only recognizes the magic string `"wgo"` after the `"::"` as the signal to start a new parallel command (otherwise it is treated as a chained command).
247
+
248
+
249
+
```shell
250
+
# ❌ These do not start parallel wgo commands. Do not nest wgo commands like this.
251
+
$ go tool wgo echo 1 :: go tool wgo echo 2 :: go tool wgo echo 3
0 commit comments