Skip to content

Commit e052e16

Browse files
committed
Do not use mixed case name in go module name
Signed-off-by: Guvenc Gulce <[email protected]>
1 parent e2b122e commit e052e16

File tree

13 files changed

+35
-30
lines changed

13 files changed

+35
-30
lines changed

go/feos-go/Makefile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,8 @@ lint: golangci-lint ## Run golangci-lint on the code.
5454

5555
.PHONY: clean
5656
clean: ## Clean any artifacts that can be regenerated.
57-
rm -rf proto/*.pb.go
57+
rm -rf gen/*
58+
rm -rf bin
5859

5960
.PHONY: add-license
6061
add-license: addlicense ## Add license headers to all go files.

go/feos-go/gen/feos/container/v1/container.pb.go

Lines changed: 5 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

go/feos-go/gen/feos/host/v1/host.pb.go

Lines changed: 5 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

go/feos-go/gen/feos/image/vmm/api/v1/image.pb.go

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

go/feos-go/gen/feos/task/v1/task.pb.go

Lines changed: 5 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

go/feos-go/gen/feos/vm/vmm/api/v1/vm.pb.go

Lines changed: 6 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

go/feos-go/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
module github.com/FeOS/go/feos-go
1+
module github.com/ironcore-dev/feos/go/feos-go
22

33
go 1.22.5

go/feos-go/hack/generate-proto.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ PROTO_PATH_ROOT="$FEOS_ROOT/proto"
1818

1919
PROTO_FILES_V1="$FEOS_ROOT/proto/v1/*.proto"
2020

21-
GO_MODULE_NAME="github.com/FeOS/go/feos-go"
21+
GO_MODULE_NAME="github.com/ironcore-dev/feos/go/feos-go"
2222

2323
OUTPUT_DIR="$GO_PROJECT_ROOT"
2424

proto/v1/container.proto

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ syntax = "proto3";
22

33
package feos.container.v1;
44

5-
option go_package = "github.com/FeOS/go/feos-go/gen/feos/container/v1";
5+
option go_package = "github.com/ironcore-dev/feos/go/feos-go/gen/feos/container/v1";
66

77
import "google/protobuf/any.proto";
88

proto/v1/host.proto

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ syntax = "proto3";
22

33
package feos.host.v1;
44

5-
option go_package = "github.com/FeOS/go/feos-go/gen/feos/host/v1";
5+
option go_package = "github.com/ironcore-dev/feos/go/feos-go/gen/feos/host/v1";
66

77
import "google/protobuf/timestamp.proto";
88

0 commit comments

Comments
 (0)