Rename a file

This is anther step towards making command names
match the files they are defined in.

Closes: #2132
Approved by: alexlarsson
This commit is contained in:
Matthias Clasen
2018-09-24 12:28:49 -04:00
committed by Atomic Bot
parent de2c69c728
commit ddbf0103c6
4 changed files with 5 additions and 5 deletions

View File

@@ -27,7 +27,7 @@ flatpak_SOURCES = \
app/flatpak-builtins-remote-delete.c \
app/flatpak-builtins-remote-list.c \
app/flatpak-builtins-ls-remote.c \
app/flatpak-builtins-info-remote.c \
app/flatpak-builtins-remote-info.c \
app/flatpak-builtins-install.c \
app/flatpak-builtins-override.c \
app/flatpak-builtins-make-current.c \

View File

@@ -88,7 +88,7 @@ format_timestamp (guint64 timestamp)
gboolean
flatpak_builtin_info_remote (int argc, char **argv, GCancellable *cancellable, GError **error)
flatpak_builtin_remote_info (int argc, char **argv, GCancellable *cancellable, GError **error)
{
g_autoptr(GOptionContext) context = NULL;
g_autoptr(GPtrArray) dirs = NULL;
@@ -349,7 +349,7 @@ flatpak_builtin_info_remote (int argc, char **argv, GCancellable *cancellable, G
}
gboolean
flatpak_complete_info_remote (FlatpakCompletion *completion)
flatpak_complete_remote_info (FlatpakCompletion *completion)
{
g_autoptr(GOptionContext) context = NULL;
g_autoptr(GPtrArray) dirs = NULL;

View File

@@ -63,7 +63,7 @@ BUILTINPROTO (add_remote)
BUILTINPROTO (modify_remote)
BUILTINPROTO (remote_delete)
BUILTINPROTO (ls_remote)
BUILTINPROTO (info_remote)
BUILTINPROTO (remote_info)
BUILTINPROTO (remote_list)
BUILTINPROTO (install)
BUILTINPROTO (update)

View File

@@ -105,7 +105,7 @@ static FlatpakCommand commands[] = {
{ "remote-delete", N_("Delete a configured remote"), flatpak_builtin_remote_delete, flatpak_complete_remote_delete },
{ "remote-list", NULL, flatpak_builtin_remote_list, flatpak_complete_remote_list, TRUE },
{ "remote-ls", N_("List contents of a configured remote"), flatpak_builtin_ls_remote, flatpak_complete_ls_remote },
{ "remote-info", N_("Show information about a remote app or runtime"), flatpak_builtin_info_remote, flatpak_complete_info_remote },
{ "remote-info", N_("Show information about a remote app or runtime"), flatpak_builtin_remote_info, flatpak_complete_remote_info },
/* translators: please keep the leading newline and space */
{ N_("\n Build applications") },