File tree Expand file tree Collapse file tree 4 files changed +11
-11
lines changed
helm-locker/codegen/cleanup
helm-project-operator/codegen/cleanup Expand file tree Collapse file tree 4 files changed +11
-11
lines changed Original file line number Diff line number Diff line change 11
11
- ' crds/helm-locker/**'
12
12
- ' package/Dockerfile-helm-locker'
13
13
- ' cmd/helm-locker/**'
14
- - ' pkg /helm-locker/**'
14
+ - ' internal /helm-locker/**'
15
15
16
16
env :
17
17
CLUSTER_NAME : e2e-ci-helm-locker
Original file line number Diff line number Diff line change 1
1
//go:generate go run pkg/codegen/buildconfig/writer.go pkg/codegen/buildconfig/main.go
2
2
3
- //go:generate go run pkg /helm-locker/codegen/cleanup/main.go
4
- //go:generate go run pkg /helm-locker/codegen/main.go
5
- //go:generate go run ./pkg /helm-locker/codegen crds ./crds/helm-locker/crds.yaml
3
+ //go:generate go run internal /helm-locker/codegen/cleanup/main.go
4
+ //go:generate go run internal /helm-locker/codegen/main.go
5
+ //go:generate go run ./internal /helm-locker/codegen crds ./crds/helm-locker/crds.yaml
6
6
7
- //go:generate go run pkg /helm-project-operator/codegen/cleanup/main.go
8
- //go:generate go run pkg /helm-project-operator/codegen/main.go
9
- //go:generate go run ./pkg /helm-project-operator/codegen crds ./crds/helm-project-operator ./crds/helm-project-operator
7
+ //go:generate go run internal /helm-project-operator/codegen/cleanup/main.go
8
+ //go:generate go run internal /helm-project-operator/codegen/main.go
9
+ //go:generate go run ./internal /helm-project-operator/codegen crds ./crds/helm-project-operator ./crds/helm-project-operator
10
10
11
11
package main
Original file line number Diff line number Diff line change @@ -8,10 +8,10 @@ import (
8
8
)
9
9
10
10
func main () {
11
- if err := cleanup .Cleanup ("./pkg /helm-locker/apis" ); err != nil {
11
+ if err := cleanup .Cleanup ("./internal /helm-locker/apis" ); err != nil {
12
12
logrus .Fatal (err )
13
13
}
14
- if err := os .RemoveAll ("./pkg /helm-locker/generated" ); err != nil {
14
+ if err := os .RemoveAll ("./internal /helm-locker/generated" ); err != nil {
15
15
logrus .Fatal (err )
16
16
}
17
17
if err := os .RemoveAll ("./crds/helm-locker" ); err != nil {
Original file line number Diff line number Diff line change @@ -8,10 +8,10 @@ import (
8
8
)
9
9
10
10
func main () {
11
- if err := cleanup .Cleanup ("./pkg /helm-project-operator/apis" ); err != nil {
11
+ if err := cleanup .Cleanup ("./internal /helm-project-operator/apis" ); err != nil {
12
12
logrus .Fatal (err )
13
13
}
14
- if err := os .RemoveAll ("./pkg /helm-project-operator/generated" ); err != nil {
14
+ if err := os .RemoveAll ("./internal /helm-project-operator/generated" ); err != nil {
15
15
logrus .Fatal (err )
16
16
}
17
17
if err := os .RemoveAll ("./crds/helm-project-operator" ); err != nil {
You can’t perform that action at this time.
0 commit comments