Skip to content

Commit

Permalink
chore(makefile): remove proto updating from install target
Browse files Browse the repository at this point in the history
  • Loading branch information
heiruwu committed Nov 20, 2023
1 parent 249fcd8 commit d63040d
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,16 @@ doctor: ## Confirm system dependencies are available

# PROJECT DEPENDENCIES ########################################################

.PHONY: proto
proto:
@ git submodule update --init --recursive
@ git submodule update --remote --merge

VIRTUAL_ENV ?= .venv
DEPENDENCIES := $(VIRTUAL_ENV)/.poetry-$(shell bin/checksum pyproject.toml poetry.lock)

.PHONY: install
install: $(DEPENDENCIES) .cache proto ## Install project dependencies
install: $(DEPENDENCIES) .cache ## Install project dependencies

$(DEPENDENCIES): poetry.lock
@ rm -rf $(VIRTUAL_ENV)/.poetry-*
Expand All @@ -41,10 +46,6 @@ endif
.cache:
@ mkdir -p .cache

proto:
@ git submodule update --init --recursive
@ git submodule update --remote --merge

# TEST ########################################################################

RANDOM_SEED ?= $(shell date +%s)
Expand Down

0 comments on commit d63040d

Please sign in to comment.