mirror of
https://gitee.com/johng/gf.git
synced 2024-11-30 03:07:45 +08:00
14 lines
193 B
Makefile
14 lines
193 B
Makefile
|
|
|
|
.PHONY: tidy
|
|
tidy:
|
|
$(eval files=$(shell find . -name go.mod))
|
|
@set -e; \
|
|
for file in ${files}; do \
|
|
goModPath=$$(dirname $$file); \
|
|
cd $$goModPath; \
|
|
go mod tidy; \
|
|
cd -; \
|
|
done
|
|
|