Skip to content

Commit

Permalink
chore: tweak release script
Browse files Browse the repository at this point in the history
  • Loading branch information
vmihailenco committed Jul 10, 2022
1 parent 6c676ce commit 51b36a4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,8 @@ 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)
printf "${dir}: go get -u && go mod tidy -compat=1.17\n"
(cd ./${dir} && go get -u && go mod tidy -compat=1.17)
done

for dir in $PACKAGE_DIRS
Expand Down

0 comments on commit 51b36a4

Please sign in to comment.