Files
langchaingo/examples/Makefile
T
2023-12-20 21:40:03 +00:00

10 lines
220 B
Makefile

SYNC_REF?=latest
.PHONY: sync
sync: ## Sync all go.mod files
@sh .update-all-to-latest.sh ${SYNC_REF}
.PHONY: install-all
install-all: ## Add go work files to all examples
@find . -name go.mod -execdir go install \;