Skip to content

Commit

Permalink
fix errors in makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
heartsucker committed Jan 9, 2019
1 parent 1b7cb73 commit 4dfdafc
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@ SHELL := /bin/bash

.PHONY: clean
clean: ## Clean the workspace of generated resources
@rm -rf build dist *.egg-info .coverage .eggs docs/_build .pytest_cache lib htmlcov && \
@rm -rf build dist *.egg-info .coverage .eggs docs/_build .pytest_cache lib htmlcov .cache && \
find . \( -name '*.py[co]' -o -name dropin.cache \) -delete && \
find . \( -name '*.bak' -o -name dropin.cache \) -delete && \
find . \( -name '*.tgz' -o -name dropin.cache \) -delete && \
find . -name __pycache__ -print0 | xargs rm -rf
find . -name __pycache__ -print0 | xargs -0 rm -rf

TESTS ?= tests
TESTOPTS ?= -v
Expand All @@ -34,7 +34,7 @@ check: clean lint test ## Run the full CI test suite
# 6. Format columns with colon as delimiter.
.PHONY: help
help: ## Print this message and exit.
@printf "Makefile for developing and testing SecureDrop.\n"
@printf "Makefile for developing and testing the SecureDrop client.\n"
@printf "Subcommands:\n\n"
@awk 'BEGIN {FS = ":.*?## "} /^[0-9a-zA-Z_-]+:.*?## / {printf "\033[36m%s\033[0m : %s\n", $$1, $$2}' $(MAKEFILE_LIST) \
| sort \
Expand Down

0 comments on commit 4dfdafc

Please sign in to comment.