CLI Arguments and options not available #9647
-
Even if it looks that some kind of cli existed in some platform or version, i am not able to use it in the current version (1.0.207) Am i missing something? is maybe my platform bugged? (ubuntu 24.04 thus deb amd64 installation) |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Actually the CLI commands work on the main executable, just the script stored in the #!/bin/sh
'/opt/Tabby/tabby' --no-sandbox configure This entrypoint seems to be generated by this script: build/linux/after-install.tpl My fast workaround to unlock my installation was to change that file to: #!/bin/sh
'/opt/Tabby/tabby' --no-sandbox $@ Apart from that, it looks like the paste command it is not really working in my installation. I do not know what could be the cause, however the other commands (open, run ...) work like a charm. |
Beta Was this translation helpful? Give feedback.
Actually the CLI commands work on the main executable, just the script stored in the
/usr/bin
directory does not allow them.The content of the tabby executable that PATH gets (
/usr/bin/tabby
) looks like this:This entrypoint seems to be generated by this script: build/linux/after-install.tpl
I guess then that the
$@
should be escaped in that file. I'm gonna open a PR for that @Eugeny .My fast workaround to unlock my installation was to change that file to:
Apart from that, it looks like the paste command it is not really working in my installation. I do not know what could be the cause, howe…