Skip to content

Commit b49588f

Browse files
blakejamesonnateinaction
authored andcommitted
updating toml and uv lock to incorporate the make sync-time functionality
1 parent 6989bd5 commit b49588f

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

Makefile

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ help: ## Display this help.
1414
@$(UV) pip install --requirement pyproject.toml
1515

1616
.PHONY: download-libraries
17-
download-libraries: .venv ## Download the required libraries
17+
download-libraries: uv .venv ## Download the required libraries
1818
@echo "Downloading libraries..."
1919
@$(UV) pip install --requirement lib/requirements.txt --target lib --no-deps --upgrade --quiet
2020
@rm -rf lib/*.dist-info
@@ -25,6 +25,10 @@ pre-commit-install: uv
2525
@echo "Installing pre-commit hooks..."
2626
@$(UVX) pre-commit install > /dev/null
2727

28+
.PHONY: sync-time
29+
sync-time: uv ## Syncs th time from your computer to the PROVES Kit board
30+
$(UVX) --from git+https://github.com/proveskit/[email protected] sync-time
31+
2832
.PHONY: fmt
2933
fmt: pre-commit-install ## Lint and format files
3034
$(UVX) pre-commit run --all-files

0 commit comments

Comments
 (0)