mirror of
https://github.com/vxcontrol/langchaingo.git
synced 2026-07-21 17:05:31 -04:00
10 lines
220 B
Makefile
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 \;
|