mirror of
https://github.com/go-micro/go-micro.git
synced 2024-12-30 10:10:44 +02:00
9 lines
115 B
Bash
9 lines
115 B
Bash
|
#!/bin/bash -ex
|
||
|
|
||
|
PKGS=""
|
||
|
for d in $(find * -name 'go.mod'); do
|
||
|
pushd $(dirname $d)
|
||
|
go mod download
|
||
|
popd
|
||
|
done
|