Fix wrong cue directory (#1749)

Fixed the wrong directory of cue files when formating
This commit is contained in:
Zheng Xi Zhou
2021-06-02 22:37:39 +08:00
committed by GitHub
parent f4feb1af9c
commit dd682919a8
+2 -1
View File
@@ -119,7 +119,8 @@ run: fmt vet
fmt: goimports installcue
go fmt ./...
$(GOIMPORTS) -local github.com/oam-dev/kubevela -w $$(go list -f {{.Dir}} ./...)
$(CUE) fmt ./hack/vela-templates/cue/*
$(CUE) fmt ./vela-templates/internal/cue/*
$(CUE) fmt ./vela-templates/registry/cue/*
# Run go vet against code
vet: