Skip to content

Commit

Permalink
Fixing up CONTRIBUTING and Makefile (#122)
Browse files Browse the repository at this point in the history
* Fixed typo

Signed-off-by: Tom Meadows <tom@tmlabs.co.uk>

* caught some makefile help blunders

Signed-off-by: Tom Meadows <tom@tmlabs.co.uk>

---------

Signed-off-by: Tom Meadows <tom@tmlabs.co.uk>
  • Loading branch information
ChaosInTheCRD authored Dec 13, 2023
1 parent fd6b6e2 commit c6750e0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ taking the time to contribute!
Before starting, please take some time to familiarize yourself with the [Code of Conduct](CODE_OF_CONDUCT.md).


## Getting started
## Getting Started

We welcome many different types of contributions and not all of them need a
Pull Request. Contributions may include:
Expand Down
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -28,15 +28,15 @@ stop: ## Stop the dev server


.PHONY: clean
clean:
clean: ## Clean up the dev server
$(MAKE) stop
@docker compose rm --force
@docker rmi archivista-archivista --force


.PHONY: test
test: ## Clean up the dev server
test: ## Run tests
@bash ./test/test.sh

help: ## Show this help
@grep -h -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}'
@grep -h -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}'

0 comments on commit c6750e0

Please sign in to comment.