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:
9
scripts/bump_deps.sh
Executable file
9
scripts/bump_deps.sh
Executable 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
|
Reference in New Issue
Block a user