File tree Expand file tree Collapse file tree 4 files changed +36
-6
lines changed Expand file tree Collapse file tree 4 files changed +36
-6
lines changed Original file line number Diff line number Diff line change
1
+ # Copyright 2021 Google LLC
2
+ #
3
+ # Licensed under the Apache License, Version 2.0 (the "License");
4
+ # you may not use this file except in compliance with the License.
5
+ # You may obtain a copy of the License at
6
+ #
7
+ # http://www.apache.org/licenses/LICENSE-2.0
8
+ #
9
+ # Unless required by applicable law or agreed to in writing, software
10
+ # distributed under the License is distributed on an "AS IS" BASIS,
11
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
+ # See the License for the specific language governing permissions and
13
+ # limitations under the License.
14
+
1
15
blank_issues_enabled : true
2
16
contact_links :
3
17
- name : kpt Documentation
Original file line number Diff line number Diff line change
1
+ # Copyright 2021 Google LLC
2
+ #
3
+ # Licensed under the Apache License, Version 2.0 (the "License");
4
+ # you may not use this file except in compliance with the License.
5
+ # You may obtain a copy of the License at
6
+ #
7
+ # http://www.apache.org/licenses/LICENSE-2.0
8
+ #
9
+ # Unless required by applicable law or agreed to in writing, software
10
+ # distributed under the License is distributed on an "AS IS" BASIS,
11
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
+ # See the License for the specific language governing permissions and
13
+ # limitations under the License.
14
+
1
15
# This file was initially auto-generated by the Firebase CLI
2
16
# https://github.com/firebase/firebase-tools
3
17
Original file line number Diff line number Diff line change @@ -24,11 +24,11 @@ GOBIN := $(shell go env GOPATH)/bin
24
24
# By default, make test-fn-render/test-fn-eval will run all tests.
25
25
T ?= ".*"
26
26
27
+ all : generate license fix vet fmt lint test build buildall tidy
28
+
27
29
build :
28
30
go build -o $(GOBIN ) /kpt -v .
29
31
30
- all : license fix vet fmt lint test build buildall tidy
31
-
32
32
buildall :
33
33
GOOS=windows go build -o /dev/null
34
34
GOOS=linux go build -o /dev/null
Original file line number Diff line number Diff line change 15
15
# don't add licenses to the site directory, it will break the docs
16
16
# and will add them to the theme which is a submodule (bad)
17
17
which addlicense || go get github.com/google/addlicense
18
- ls | grep -v site | grep -v docs | grep -v e2e | xargs $GOBIN /addlicense -y 2021 -l apache
19
- # process e2e separately because expected result files shouldn't have license
20
- # otherwise the test will fail
21
- find e2e -type f | grep -v ' .expected/results.yaml' | xargs $GOBIN /addlicense -y 2021 -l apache
18
+ find . -type f \
19
+ ! -path " ./site/*" \
20
+ ! -path " ./docs/*" \
21
+ ! -path " **/.expected/results.yaml" \
22
+ ! -path " **/generated/*" \
23
+ | xargs $GOBIN /addlicense -y 2021 -l apache
You can’t perform that action at this time.
0 commit comments