Skip to content

Commit b6821d7

Browse files
committed
Minor spelling fix, minor cleanup
1 parent 533c1e4 commit b6821d7

File tree

4 files changed

+6
-5
lines changed

4 files changed

+6
-5
lines changed

.golangci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -434,7 +434,7 @@ severity:
434434
# selected out format.
435435
# - Code climate: https://docs.codeclimate.com/docs/issues#issue-severity
436436
# - Checkstyle: https://checkstyle.sourceforge.io/property_types.html#severity
437-
# - Github: https://help.github.com/en/actions/reference/workflow-commands-for-github-actions#setting-an-error-message
437+
# - GitHub: https://help.github.com/en/actions/reference/workflow-commands-for-github-actions#setting-an-error-message
438438
default-severity: error
439439

440440
# The default value is false.

.goreleaser.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ build:
2929
skip: true
3030

3131
# ---------------------------
32-
# Github Release
32+
# GitHub Release
3333
# ---------------------------
3434
release:
3535
prerelease: true

.make/common.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ install-releaser: ## Install the GoReleaser application
4545
@echo "installing GoReleaser..."
4646
@curl -sfL https://install.goreleaser.com/github.com/goreleaser/goreleaser.sh | sh
4747

48-
release:: ## Full production release (creates release in Github)
48+
release:: ## Full production release (creates release in GitHub)
4949
@echo "releasing..."
5050
@test $(github_token)
5151
@export GITHUB_TOKEN=$(github_token) && goreleaser --rm-dist

Makefile

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,15 +14,16 @@ ifeq ($(REPO_OWNER),)
1414
REPO_OWNER="bitcoinschema"
1515
endif
1616

17-
.PHONY: clean
18-
17+
.PHONY: all
1918
all: ## Runs multiple commands
2019
@$(MAKE) test
2120

21+
.PHONY: clean
2222
clean: ## Remove previous builds and any test cache data
2323
@go clean -cache -testcache -i -r
2424
@test $(DISTRIBUTIONS_DIR)
2525
@if [ -d $(DISTRIBUTIONS_DIR) ]; then rm -r $(DISTRIBUTIONS_DIR); fi
2626

27+
.PHONY: release
2728
release:: ## Runs common.release then runs godocs
2829
@$(MAKE) godocs

0 commit comments

Comments
 (0)