Skip to content

Commit

Permalink
build(mage): remove deprecated --rm-dust flag from goreleaser.mage.go
Browse files Browse the repository at this point in the history
  • Loading branch information
sheldonhull authored Jan 23, 2024
1 parent 8bcc4af commit 443f282
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions magefiles/goreleaser.mage.go
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ func Build() error {

releaserArgs := []string{
"build",
"--rm-dist",
"--clean",
"--snapshot",
"--single-target",
}
Expand All @@ -62,7 +62,7 @@ func BuildAll() error {
releaserArgs := []string{
"release",
"--snapshot",
"--rm-dist",
"--clean",
"--skip-publish",
}
pterm.Debug.Printfln("goreleaser: %+v", releaserArgs)
Expand Down Expand Up @@ -102,7 +102,7 @@ func Release() error {

releaserArgs := []string{
"release",
"--rm-dist",
"--clean",
"--skip-validate",
fmt.Sprintf("--release-notes=%s", cleanpath),
}
Expand Down

0 comments on commit 443f282

Please sign in to comment.