diff options
author | Hisham Muhammad <hisham@gobolinux.org> | 2025-01-05 21:40:39 -0300 |
---|---|---|
committer | Hisham Muhammad <hisham@gobolinux.org> | 2025-02-21 11:22:43 -0300 |
commit | 7e86fa86b4d08fd6118d6eab46d92b29ffea791e (patch) | |
tree | 10fdd12beed4b0eca408533ad11d1f52d7d62e10 /docs/luarocks_remove.md | |
parent | 1ada2ea4bbd94ac0c58e3e2cc918194140090a75 (diff) | |
download | luarocks-7e86fa86b4d08fd6118d6eab46d92b29ffea791e.tar.gz luarocks-7e86fa86b4d08fd6118d6eab46d92b29ffea791e.tar.bz2 luarocks-7e86fa86b4d08fd6118d6eab46d92b29ffea791e.zip |
docs: import Wiki docs into the main repo
Diffstat (limited to 'docs/luarocks_remove.md')
-rw-r--r-- | docs/luarocks_remove.md | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/docs/luarocks_remove.md b/docs/luarocks_remove.md new file mode 100644 index 00000000..0a74a2d9 --- /dev/null +++ b/docs/luarocks_remove.md | |||
@@ -0,0 +1,22 @@ | |||
1 | # luarocks remove | ||
2 | |||
3 | Uninstall a rock. | ||
4 | |||
5 | ## Usage | ||
6 | |||
7 | `luarocks remove [--force|--force-fast] <name> [<version>]` | ||
8 | |||
9 | `<name>` is the name of a rock to be uninstalled. If a `<version>` is not | ||
10 | given, try to remove all versions at once. Will only perform the removal if it | ||
11 | does not break dependencies. | ||
12 | |||
13 | To override this check and force the removal, use `--force`. | ||
14 | |||
15 | To perform a forced removal without looking for broken dependencies, | ||
16 | use `--force-fast`. | ||
17 | |||
18 | ## Example | ||
19 | |||
20 | ``` | ||
21 | luarocks remove --force luafilesystem 1.3.0 | ||
22 | ``` | ||