Skip to content

Commit 207d0fc

Browse files
authored
use csctl in Makefile (#93)
these are the places that were left after renaming the project to csctl. Signed-off-by: kranurag7 <[email protected]>
1 parent 6c66209 commit 207d0fc

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

Makefile

+5-5
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ BUILDER_IMAGE = $(IMAGE_PREFIX)/csctl-builder
2222
BUILDER_IMAGE_VERSION = $(shell cat .builder-image-version.txt)
2323
Version := $(shell git describe --tags --always --dirty)
2424
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)
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
6464
lint-golang: ## Lint Golang codebase

0 commit comments

Comments
 (0)