aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorBryan Newbold <bnewbold@archive.org>2020-06-29 16:28:11 -0700
committerBryan Newbold <bnewbold@archive.org>2020-06-29 16:28:11 -0700
commit0f8b248259b4b57e425f7420883cb141565b2b22 (patch)
tree220365cb4a8257d7bf05a43e1c88d457d1b0477e /Makefile
parent1a4283257e1365468553e469b42c7803a726d6e2 (diff)
downloadfatcat-scholar-0f8b248259b4b57e425f7420883cb141565b2b22.tar.gz
fatcat-scholar-0f8b248259b4b57e425f7420883cb141565b2b22.zip
makefile: deps -> dep
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 428b0a6..8ec51ad 100644
--- a/Makefile
+++ b/Makefile
@@ -8,8 +8,8 @@ help: ## Print info about all commands
@echo
@grep -E '^[a-zA-Z0-9_-]+:.*?## .*$$' $(MAKEFILE_LIST) | awk 'BEGIN {FS = ":.*?## "}; {printf " \033[01;32m%-20s\033[0m %s\n", $$1, $$2}'
-.PHONY: deps
-deps: ## Install dependencies using pipenv
+.PHONY: dep
+dep: ## Install dependencies using pipenv
pipenv install --dev
.PHONY: lint