diff options
author | Jan200101 <sentrycraft123@gmail.com> | 2021-12-25 21:01:35 +0100 |
---|---|---|
committer | Jan200101 <sentrycraft123@gmail.com> | 2021-12-25 21:01:35 +0100 |
commit | 48b21b73d2cafca5a146546191972217b452a799 (patch) | |
tree | 3c1c699e3fcd8c9e05e76a2ed150533e3736b5a7 | |
parent | 60f28e2ca03bf4db8c939a4709ff2f5b0840c901 (diff) | |
download | polecat-48b21b73d2cafca5a146546191972217b452a799.tar.gz polecat-48b21b73d2cafca5a146546191972217b452a799.zip |
rename wine list-installed to installed
-rw-r--r-- | src/wine.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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" }, }; |