From cad13521fee7599226626d80cbd5bd507e7ae710 Mon Sep 17 00:00:00 2001 From: Alexander Larsson Date: Mon, 21 Dec 2015 10:01:00 +0100 Subject: [PATCH] apps: Make it more obvious that system repo is default In the install-* and other commands where the dir is initialized from the args, document that the system repo is the default in the usage help. --- app/xdg-app-main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/xdg-app-main.c b/app/xdg-app-main.c index 39ad6fd5..0caa96e1 100644 --- a/app/xdg-app-main.c +++ b/app/xdg-app-main.c @@ -77,7 +77,7 @@ static GOptionEntry global_entries[] = { static GOptionEntry user_entries[] = { { "user", 0, 0, G_OPTION_ARG_NONE, &opt_user, "Work on user installations", NULL }, - { "system", 0, G_OPTION_FLAG_REVERSE, G_OPTION_ARG_NONE, &opt_user, "Work on system-wide installations", NULL }, + { "system", 0, G_OPTION_FLAG_REVERSE, G_OPTION_ARG_NONE, &opt_user, "Work on system-wide installations (default)", NULL }, { NULL } };