From eb950c6502e77cfb0e6fed86745a370b1dbca4e4 Mon Sep 17 00:00:00 2001 From: Matthias Clasen Date: Wed, 9 Jan 2019 00:10:55 -0500 Subject: [PATCH] update: Use ALL_DIRS for completion It does not change the outcome, but it is nicer to use the same value in coomplete as for the main function. Closes: #2534 Approved by: alexlarsson --- app/flatpak-builtins-update.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/flatpak-builtins-update.c b/app/flatpak-builtins-update.c index 5eed12be..7c856fec 100644 --- a/app/flatpak-builtins-update.c +++ b/app/flatpak-builtins-update.c @@ -288,7 +288,7 @@ flatpak_complete_update (FlatpakCompletion *completion) context = g_option_context_new (""); if (!flatpak_option_context_parse (context, options, &completion->argc, &completion->argv, - FLATPAK_BUILTIN_FLAG_STANDARD_DIRS, &dirs, NULL, NULL)) + FLATPAK_BUILTIN_FLAG_ALL_DIRS, &dirs, NULL, NULL)) return FALSE; kinds = flatpak_kinds_from_bools (opt_app, opt_runtime);