1
0
mirror of https://github.com/go-micro/go-micro.git synced 2024-12-30 10:10:44 +02:00
go-micro/plugins/.travis/deps.sh

9 lines
115 B
Bash
Raw Normal View History

2020-12-26 17:32:45 +02:00
#!/bin/bash -ex
PKGS=""
for d in $(find * -name 'go.mod'); do
pushd $(dirname $d)
go mod download
popd
done