File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
Expand file tree Collapse file tree 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
2222BUILDER_IMAGE_VERSION = $(shell cat .builder-image-version.txt)
2323Version := $(shell git describe --tags --always --dirty)
2424Commit := $(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 )
2626
2727# Certain aspects of the build are done in containers for consistency (e.g. protobuf generation)
2828# 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))
4848# ########
4949
5050.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
5353
5454
5555# #@ Common
5656# #########
5757# Common #
5858# #########
5959.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
6262
6363.PHONY : lint-golang
6464lint-golang : # # Lint Golang codebase
You can’t perform that action at this time.
0 commit comments