1
0
mirror of https://github.com/go-micro/go-micro.git synced 2024-12-24 10:07:04 +02:00
go-micro/plugins/.travis/deps.sh
2020-12-26 15:32:45 +00:00

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