My project (https://github.com/toni-moreno/resistor) needs compile 2 different binaries, I would like handle code changes with bra for both binaries.
But when configuring with this config it doens't work
$ cat .bra.toml
[run]
init_cmds = [
["go", "build","-o", "./bin/resistor", "./pkg/"],
["go", "build","-o", "./bin/resinjector", "./pkg/udf" ],
["./bin/resistor", "&", "./bin/resinjector"],
]
watch_all = true
watch_dirs = [
"$WORKDIR/pkg",
]
There is any way to do this?