aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBryan Newbold <bnewbold@archive.org>2020-06-11 19:55:46 -0700
committerBryan Newbold <bnewbold@archive.org>2020-06-11 19:55:46 -0700
commitc8bde4615ffb637f3a52b55793fb58355e12b68c (patch)
tree1d9144039b7627eaf7d098c7b9c3aab1ab19261e
parentce0944afe1129d5b4137b9e006eccf7308171d70 (diff)
downloadchocula-c8bde4615ffb637f3a52b55793fb58355e12b68c.tar.gz
chocula-c8bde4615ffb637f3a52b55793fb58355e12b68c.zip
makefile: dep not deps
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 4d11300..7a55bd5 100644
--- a/Makefile
+++ b/Makefile
@@ -8,8 +8,8 @@ help: ## Print info about all commands
@echo
@grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | awk 'BEGIN {FS = ":.*?## "}; {printf " \033[01;32m%-20s\033[0m %s\n", $$1, $$2}'
-.PHONY: deps
-deps: ## Create local virtualenv using pipenv
+.PHONY: dep
+dep: ## Create local virtualenv using pipenv
pipenv install --dev
.PHONY: test