diff options
author | Bryan Newbold <bnewbold@archive.org> | 2020-06-11 19:55:46 -0700 |
---|---|---|
committer | Bryan Newbold <bnewbold@archive.org> | 2020-06-11 19:55:46 -0700 |
commit | c8bde4615ffb637f3a52b55793fb58355e12b68c (patch) | |
tree | 1d9144039b7627eaf7d098c7b9c3aab1ab19261e /Makefile | |
parent | ce0944afe1129d5b4137b9e006eccf7308171d70 (diff) | |
download | chocula-c8bde4615ffb637f3a52b55793fb58355e12b68c.tar.gz chocula-c8bde4615ffb637f3a52b55793fb58355e12b68c.zip |
makefile: dep not deps
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 |