Skip to content

Commit e056fcd

Browse files
Fix binary name to csctl-openstack to be consistent with csctl
Signed-off-by: michal.gubricky <[email protected]>
1 parent a43701f commit e056fcd

File tree

6 files changed

+11
-11
lines changed

6 files changed

+11
-11
lines changed

.github/ISSUE_TEMPLATE/bug_report.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,5 +19,5 @@ about: Tell us about a problem you are experiencing.
1919

2020
**Environment:**
2121

22-
- csctl-plugin-openstack version: (use `csctl-plugin-openstack version`)
23-
- OS (e.g. from `/etc/os-release`):
22+
- csctl-plugin-openstack version:
23+
- OS (e.g. from `/etc/os-release`):

.github/ISSUE_TEMPLATE/feature_request.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,4 @@ about: Suggest an idea for this project.
1616

1717
**Environment:**
1818

19-
- csctl-plugin-openstack version: (use `csctl-plugin-openstack version`)
19+
- csctl-plugin-openstack version:

.github/workflows/build.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Build csctl-plugin-openstack binary
1+
name: Build csctl-openstack binary
22
# yamllint disable rule:line-length
33
on: # yamllint disable-line rule:truthy
44
push:
@@ -19,4 +19,4 @@ jobs:
1919
# Load Golang cache build from GitHub
2020
- name: build go binary
2121
run: |
22-
go build -o csctl-plugin-openstack main.go
22+
go build -o csctl-openstack main.go

.gitignore

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,6 @@ temp
1616
.reports
1717
# build and release
1818
dist
19-
csctl-plugin-openstack
19+
csctl-openstack
2020
tmp/
2121
releases/

.goreleaser.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
project_name: csctl-plugin-openstack
22

33
builds:
4-
- binary: csctl-plugin-openstack
4+
- binary: csctl-openstack
55
goos:
66
- linux
77
- darwin

Makefile

+4-4
Original file line numberDiff line numberDiff line change
@@ -48,17 +48,17 @@ export GOBIN := $(abspath $(TOOLS_BIN_DIR))
4848
#########
4949

5050
.PHONY: clean
51-
clean: ## cleans the csctl-plugin-openstack binary
52-
@if [ -f csctl-plugin-openstack ]; then rm csctl-plugin-openstack; fi
51+
clean: ## cleans the csctl-openstack binary
52+
@if [ -f csctl-openstack ]; then rm csctl-openstack; fi
5353

5454

5555
##@ Common
5656
##########
5757
# Common #
5858
##########
5959
.PHONY: build
60-
build: # build the csctl-plugin-openstack binary
61-
go build -ldflags "$(LDFLAGS)" -o csctl-plugin-openstack main.go
60+
build: # build the csctl-openstack binary
61+
go build -ldflags "$(LDFLAGS)" -o csctl-openstack main.go
6262

6363
.PHONY: lint-golang
6464
lint-golang: ## Lint Golang codebase

0 commit comments

Comments
 (0)