zmap / zlint

X.509 Certificate Linter focused on Web PKI standards and requirements.
https://zmap.io
Apache License 2.0
361 stars 110 forks source link

Fix goreleaser to use the --clean flag rather than --rm-dist #868

Closed christopher-henderson closed 4 months ago

christopher-henderson commented 4 months ago

The --rm-dist flag was apparently renamed to --clean.

https://github.com/goreleaser/goreleaser/blob/137855902e33dfcf6f1fa470833b0028ab5440b9/www/docs/deprecations.md?plain=1#L450

### --rm-dist

> since 2023-01-17 (v1.15.0), removed 2024-05-26 (v2.0)

`--rm-dist` has been deprecated in favor of `--clean`.

=== "Before"

    ```bash
    goreleaser release --rm-dist

=== "After"

```bash
goreleaser release --clean
```