recoll GUI: behave as recollq if argv[0] is recollq
This commit is contained in:
parent
12c6b8f210
commit
758a2e332c
@ -235,8 +235,11 @@ Usage(void)
|
||||
|
||||
int main(int argc, char **argv)
|
||||
{
|
||||
// If "-t" is present at all, we don't do the GUI thing and pass the
|
||||
// whole to recollq for command line / pipe usage.
|
||||
// if we are named recollq or option "-t" is present at all, we
|
||||
// don't do the GUI thing and pass the whole to recollq for
|
||||
// command line / pipe usage.
|
||||
if (!strcmp(argv[0], "recollq"))
|
||||
exit(recollq(&theconfig, argc, argv));
|
||||
for (int i = 0; i < argc; i++) {
|
||||
if (!strcmp(argv[i], "-t")) {
|
||||
exit(recollq(&theconfig, argc, argv));
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user