Update go-ini dependency and remove semicolon hack in translations (#2913)

This commit is contained in:
Lauris BH
2017-11-15 05:34:42 +02:00
committed by Lunny Xiao
parent bd23e36bec
commit a6f337046f
17 changed files with 584 additions and 429 deletions

5
vendor/gopkg.in/ini.v1/Makefile generated vendored
View File

@@ -1,4 +1,4 @@
.PHONY: build test bench vet
.PHONY: build test bench vet coverage
build: vet bench
@@ -10,3 +10,6 @@ bench:
vet:
go vet
coverage:
go test -coverprofile=c.out && go tool cover -html=c.out && rm c.out