aboutsummaryrefslogtreecommitdiff
path: root/docs/luarocks_remove.md
blob: 0a74a2d90f34eaacbd8451df27df9cce0742cacd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# luarocks remove

Uninstall a rock.

## Usage

`luarocks remove [--force|--force-fast] <name> [<version>]`

`<name>` is the name of a rock to be uninstalled. If a `<version>` is not
given, try to remove all versions at once. Will only perform the removal if it
does not break dependencies.

To override this check and force the removal, use `--force`.

To perform a forced removal without looking for broken dependencies,
use `--force-fast`.

## Example

```
luarocks remove --force luafilesystem 1.3.0
```