From 2afc3349b1ca4207d20f059f99f5c57ca5baa892 Mon Sep 17 00:00:00 2001 From: Alexander Larsson Date: Thu, 10 Dec 2015 11:15:51 +0100 Subject: [PATCH] completion: Fix completion of apps/runtimes in a remote The name of the commandline operation changed to ls-remotes. --- completion/xdg-app | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/completion/xdg-app b/completion/xdg-app index 800239b0..bb3b304c 100755 --- a/completion/xdg-app +++ b/completion/xdg-app @@ -250,7 +250,7 @@ _xdg-app() { if [[ -z $remote ]]; then comps=$(xdg-app $mode list-remotes) elif [[ -z $name ]]; then - comps=$(xdg-app $mode repo-contents $remote --runtimes) + comps=$(xdg-app $mode ls-remote $remote --runtimes) else comps='' # FIXME: branches fi @@ -272,7 +272,7 @@ _xdg-app() { if [[ -z $remote ]]; then comps=$(xdg-app $mode list-remotes) elif [[ -z $name ]]; then - comps=$(xdg-app $mode repo-contents $remote --apps) + comps=$(xdg-app $mode ls-remote $remote --apps) else comps='' # FIXME: branches fi