summaryrefslogtreecommitdiff
path: root/vendor/github.com/uptrace/bun/Makefile
diff options
context:
space:
mode:
authorLibravatar tobi <31960611+tsmethurst@users.noreply.github.com>2021-09-29 15:09:45 +0200
committerLibravatar GitHub <noreply@github.com>2021-09-29 15:09:45 +0200
commit9a53b1a8d19da525ca7ace957b2d32f85dbe0fe9 (patch)
tree5f7a391618a0d1c68ab1f21ef4bd18ff034486ec /vendor/github.com/uptrace/bun/Makefile
parentskip account on error instead of returning error (#251) (diff)
downloadgotosocial-9a53b1a8d19da525ca7ace957b2d32f85dbe0fe9.tar.xz
upstep bun to v1.0.9 (#252)
Diffstat (limited to 'vendor/github.com/uptrace/bun/Makefile')
-rw-r--r--vendor/github.com/uptrace/bun/Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/vendor/github.com/uptrace/bun/Makefile b/vendor/github.com/uptrace/bun/Makefile
index e121c1d8e..90181e9de 100644
--- a/vendor/github.com/uptrace/bun/Makefile
+++ b/vendor/github.com/uptrace/bun/Makefile
@@ -10,10 +10,11 @@ test:
done
go_mod_tidy:
+ go get -u && go mod tidy
set -e; for dir in $(ALL_GO_MOD_DIRS); do \
echo "go mod tidy in $${dir}"; \
(cd "$${dir}" && \
- go get -d ./... && \
+ go get -u ./... && \
go mod tidy); \
done