Skip to content

Commit

Permalink
Create cache directory
Browse files Browse the repository at this point in the history
  • Loading branch information
jacebrowning committed Dec 23, 2018
1 parent adb7ac9 commit 610ac9d
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ doctor: ## Confirm system dependencies are available
DEPENDENCIES := $(VIRTUAL_ENV)/.poetry-$(shell bin/checksum pyproject.toml poetry.lock)

.PHONY: install
install: $(DEPENDENCIES)
install: $(DEPENDENCIES) .cache

$(DEPENDENCIES): poetry.lock
@ poetry config settings.virtualenvs.in-project true
Expand All @@ -53,6 +53,9 @@ poetry.lock: pyproject.toml
poetry lock
@ touch $@

.cache:
@ mkdir -p .cache

# CHECKS ######################################################################

.PHONY: format
Expand Down

0 comments on commit 610ac9d

Please sign in to comment.