Skip to content

CLI Arguments and options not available #9647

Closed Answered by RiccardoManzan
RiccardoManzan asked this question in Q&A
Discussion options

You must be logged in to vote

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:

#!/bin/sh
'/opt/Tabby/tabby' --no-sandbox configure

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:

#!/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, howe…

Replies: 1 comment

Comment options

You must be logged in to vote
0 replies
Answer selected by RiccardoManzan
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
1 participant