Im kinda confused using sidecar.
I have a binary that is run the following way
utils test arg1 arg2
but when I run it it errors with
stderr: "Usage: utils [OPTIONS] COMMAND [ARGS]...↵Try 'utils --help' for help.↵╭─ Erro…"
This looks like my args are not being passed in. How do I even begin to debug this ?
here is the relavent part of the config
"shell": {
"sidecar": true,
"scope": [
{"name": "binaries/utils",
"sidecar": true
}
]
},
``` and
"externalBin": [
"binaries/utils"
],