mirror of https://github.com/go-redis/redis.git
chore: don't update dependencies
This commit is contained in:
parent
c306a51f21
commit
894b0b961b
|
@ -48,14 +48,15 @@ PACKAGE_DIRS=$(find . -mindepth 2 -type f -name 'go.mod' -exec dirname {} \; \
|
|||
for dir in $PACKAGE_DIRS
|
||||
do
|
||||
printf "${dir}: go get -u && go mod tidy\n"
|
||||
(cd ./${dir} && go get -u && go mod tidy)
|
||||
#(cd ./${dir} && go get -u && go mod tidy)
|
||||
done
|
||||
|
||||
for dir in $PACKAGE_DIRS
|
||||
do
|
||||
sed --in-place \
|
||||
"s/go-redis\/redis\([^ ]*\) v.*/go-redis\/redis\1 ${TAG}/" "${dir}/go.mod"
|
||||
(cd ./${dir} && go get -u && go mod tidy)
|
||||
#(cd ./${dir} && go get -u && go mod tidy)
|
||||
(cd ./${dir} && go mod tidy)
|
||||
done
|
||||
|
||||
sed --in-place "s/\(return \)\"[^\"]*\"/\1\"${TAG#v}\"/" ./version.go
|
||||
|
|
Loading…
Reference in New Issue