Skip to content

Commit

Permalink
make: Add 'make update'
Browse files Browse the repository at this point in the history
  • Loading branch information
Manuel Vázquez Acosta committed Jul 5, 2024
1 parent 678308b commit 1e66e84
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,17 @@ sync: bootstrap
.PHONY: sync

lock: bootstrap
ifdef update_all
@rye sync --update-all
else
@rye sync
endif
.PHONY: lock

update: bootstrap
@$(MAKE) lock update_all=1
.PHONY: update


format-python:
@$(RYE_EXEC) isort src/$(PROJECT_NAME)
Expand Down

0 comments on commit 1e66e84

Please sign in to comment.