From 48b21b73d2cafca5a146546191972217b452a799 Mon Sep 17 00:00:00 2001 From: Jan200101 Date: Sat, 25 Dec 2021 21:01:35 +0100 Subject: rename wine list-installed to installed --- src/wine.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/wine.c b/src/wine.c index 16c342f..37e2c78 100644 --- a/src/wine.c +++ b/src/wine.c @@ -15,11 +15,11 @@ #include "common.h" static const struct Command winecmd_commands[] = { - { .name = "download", .func = winecmd_download, .description = "download and extract a wine versions" }, + { .name = "download", .func = winecmd_download, .description = "download and extract a wine version" }, { .name = "env", .func = winecmd_env, .description = "add wine to your PATH in a POSIX shell"}, { .name = "env-fish", .func = winecmd_env, .description = "add wine to your PATH in the fish shell"}, { .name = "list", .func = winecmd_list, .description = "list installable wine versions" }, - { .name = "list-installed", .func = winecmd_installed, .description = "list already installed wine versions" }, + { .name = "installed", .func = winecmd_installed, .description = "list already installed wine versions" }, { .name = "remove", .func = winecmd_remove, .description = "remove a wine version" }, { .name = "run", .func = winecmd_run, .description = "run an installed wine version" }, }; -- cgit v1.2.3