1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2025-01-20 05:19:24 +02:00

remove the dist folder after goreleaser runs

This commit is contained in:
Jesse Duffield 2018-08-09 15:47:55 +10:00
parent a068548bcb
commit 58977ed7f3

View File

@ -42,6 +42,7 @@ func main() {
runCommand("git", "tag", newVersion)
runCommand("git", "push", "origin", newVersion)
runCommand("goreleaser", "--rm-dist")
runCommand("rm", "-rf", "dist")
}
func runCommand(args ...string) {