1
0
mirror of https://github.com/goreleaser/goreleaser.git synced 2025-07-17 01:42:37 +02:00

clean: remove unused code (#1112)

This commit is contained in:
Grachev Mikhail
2019-08-13 16:24:17 +03:00
committed by Carlos Alexandro Becker
parent b477ffa095
commit 7a2b332554
3 changed files with 1 additions and 4 deletions

View File

@ -249,7 +249,7 @@ func setEnv(env map[string]string) {
}
func unsetEnv(env map[string]string) {
for k, _ := range env {
for k := range env {
os.Unsetenv(k)
}
}