aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJan200101 <sentrycraft123@gmail.com>2021-12-25 21:01:35 +0100
committerJan200101 <sentrycraft123@gmail.com>2021-12-25 21:01:35 +0100
commit48b21b73d2cafca5a146546191972217b452a799 (patch)
tree3c1c699e3fcd8c9e05e76a2ed150533e3736b5a7
parent60f28e2ca03bf4db8c939a4709ff2f5b0840c901 (diff)
downloadpolecat-48b21b73d2cafca5a146546191972217b452a799.tar.gz
polecat-48b21b73d2cafca5a146546191972217b452a799.zip
rename wine list-installed to installed
-rw-r--r--src/wine.c4
1 files 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" },
};