Fix vformat

This commit is contained in:
世界 2022-05-18 15:26:34 +08:00
parent 5f3949a838
commit 778992eeb9
No known key found for this signature in database
GPG Key ID: CD109927C34A63C4
2 changed files with 3 additions and 3 deletions

View File

@ -1,4 +1,5 @@
package core
//go:generate go install -v github.com/daixiang0/gci@latest
//go:generate go install -v mvdan.cc/gofumpt@latest
//go:generate go run ../infra/vformat/main.go -pwd ./..

View File

@ -134,7 +134,7 @@ func main() {
if runtime.GOOS == "windows" {
suffix = ".exe"
}
gofmt := "gofmt" + suffix
gofmt := "gofumpt" + suffix
goimports := "gci" + suffix
if gofmtPath, err := exec.LookPath(gofmt); err != nil {
@ -183,8 +183,7 @@ func main() {
}
goimportsArgs := []string{
"-w",
"-local", "github.com/xtls/xray-core",
"write",
}
RunMany(gofmt, gofmtArgs, rawFilesSlice)