Skip to content

Commit

Permalink
Minor spelling fix, minor cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
mrz1836 committed Jun 24, 2023
1 parent 533c1e4 commit b6821d7
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .golangci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -434,7 +434,7 @@ severity:
# selected out format.
# - Code climate: https://docs.codeclimate.com/docs/issues#issue-severity
# - Checkstyle: https://checkstyle.sourceforge.io/property_types.html#severity
# - Github: https://help.github.com/en/actions/reference/workflow-commands-for-github-actions#setting-an-error-message
# - GitHub: https://help.github.com/en/actions/reference/workflow-commands-for-github-actions#setting-an-error-message
default-severity: error

# The default value is false.
Expand Down
2 changes: 1 addition & 1 deletion .goreleaser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ build:
skip: true

# ---------------------------
# Github Release
# GitHub Release
# ---------------------------
release:
prerelease: true
Expand Down
2 changes: 1 addition & 1 deletion .make/common.mk
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ install-releaser: ## Install the GoReleaser application
@echo "installing GoReleaser..."
@curl -sfL https://install.goreleaser.com/github.com/goreleaser/goreleaser.sh | sh

release:: ## Full production release (creates release in Github)
release:: ## Full production release (creates release in GitHub)
@echo "releasing..."
@test $(github_token)
@export GITHUB_TOKEN=$(github_token) && goreleaser --rm-dist
Expand Down
5 changes: 3 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,16 @@ ifeq ($(REPO_OWNER),)
REPO_OWNER="bitcoinschema"
endif

.PHONY: clean

.PHONY: all
all: ## Runs multiple commands
@$(MAKE) test

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

.PHONY: release
release:: ## Runs common.release then runs godocs
@$(MAKE) godocs

0 comments on commit b6821d7

Please sign in to comment.