1
0
mirror of https://github.com/redis/go-redis.git synced 2025-07-28 06:42:00 +03:00

Fix otel example

This commit is contained in:
Vladimir Mihailenco
2021-08-12 14:24:39 +03:00
parent 818c0e0b2e
commit 98ed2cbcad
12 changed files with 151 additions and 146 deletions

9
scripts/bump_deps.sh Executable file
View File

@ -0,0 +1,9 @@
PACKAGE_DIRS=$(find . -mindepth 2 -type f -name 'go.mod' -exec dirname {} \; \
| sed 's/^\.\///' \
| sort)
for dir in $PACKAGE_DIRS
do
printf "${dir}: go get -u ./... && go mod tidy\n"
(cd ./${dir} && go get -u ./... && go mod tidy)
done