Skip to content

Commit 12fd3a2

Browse files
committed
fix
1 parent 915b448 commit 12fd3a2

4 files changed

Lines changed: 421 additions & 540 deletions

File tree

Makefile

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -833,7 +833,7 @@ node_modules: pnpm-lock.yaml
833833
@touch .venv
834834

835835
.PHONY: update
836-
update: update-js update-py ## update js and py dependencies
836+
update: update-js update-py update-go ## update dependencies
837837

838838
.PHONY: update-js
839839
update-js: node_modules ## update js dependencies
@@ -851,6 +851,12 @@ update-py: node_modules ## update py dependencies
851851
uv sync
852852
@touch .venv
853853

854+
.PHONY: update-go
855+
update-go: ## update go dependencies
856+
$(GO) get -u ./...
857+
$(MAKE) tidy
858+
$(MAKE) go-licenses
859+
854860
.PHONY: webpack
855861
webpack: $(WEBPACK_DEST) ## build webpack files
856862

0 commit comments

Comments
 (0)