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