File tree 1 file changed +5
-5
lines changed
1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ BUILDER_IMAGE = $(IMAGE_PREFIX)/csctl-builder
22
22
BUILDER_IMAGE_VERSION = $(shell cat .builder-image-version.txt)
23
23
Version := $(shell git describe --tags --always --dirty)
24
24
Commit := $(shell git rev-parse HEAD)
25
- LDFLAGS := -X github.com/SovereignCloudStack/csmctl /pkg/cmd.Version=$(Version ) -X github.com/SovereignCloudStack/csmctl /pkg/cmd.Commit=$(Commit )
25
+ LDFLAGS := -X github.com/SovereignCloudStack/csctl /pkg/cmd.Version=$(Version ) -X github.com/SovereignCloudStack/csctl /pkg/cmd.Commit=$(Commit )
26
26
27
27
# Certain aspects of the build are done in containers for consistency (e.g. protobuf generation)
28
28
# If you have the correct tools installed and you want to speed up development you can run
@@ -48,17 +48,17 @@ export GOBIN := $(abspath $(TOOLS_BIN_DIR))
48
48
# ########
49
49
50
50
.PHONY : clean
51
- clean : # # cleans the csmctl binary
52
- @if [ -f csmctl ]; then rm csmctl ; fi
51
+ clean : # # cleans the csctl binary
52
+ @if [ -f csctl ]; then rm csctl ; fi
53
53
54
54
55
55
# #@ Common
56
56
# #########
57
57
# Common #
58
58
# #########
59
59
.PHONY : build
60
- build : # build the csmctl binary
61
- go build -ldflags " $( LDFLAGS) " -o csmctl main.go
60
+ build : # build the csctl binary
61
+ go build -ldflags " $( LDFLAGS) " -o csctl main.go
62
62
63
63
.PHONY : lint-golang
64
64
lint-golang : # # Lint Golang codebase
You can’t perform that action at this time.
0 commit comments