Skip to content

Commit dcf7bbb

Browse files
authored
updating toml and uv lock to incorporate the make sync-time functionality (#3)
1 parent d5092fd commit dcf7bbb

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
@@ -16,7 +16,7 @@ help: ## Display this help.
1616
LOCAL_PYSQUARED ?= ""
1717

1818
.PHONY: download-libraries
19-
download-libraries: .venv ## Download the required libraries
19+
download-libraries: uv .venv ## Download the required libraries
2020
@echo "Downloading libraries..."
2121
@$(UV) pip install --requirement lib/requirements.txt --target lib --no-deps --upgrade --quiet; \
2222

@@ -34,6 +34,10 @@ pre-commit-install: uv
3434
@echo "Installing pre-commit hooks..."
3535
@$(UVX) pre-commit install > /dev/null
3636

37+
.PHONY: sync-time
38+
sync-time: uv ## Syncs th time from your computer to the PROVES Kit board
39+
$(UVX) --from git+https://github.com/proveskit/[email protected] sync-time
40+
3741
.PHONY: fmt
3842
fmt: pre-commit-install ## Lint and format files
3943
$(UVX) pre-commit run --all-files

0 commit comments

Comments
 (0)