From c370a5e728116096228da84593a7179631ceed84 Mon Sep 17 00:00:00 2001 From: Jesse Duffield Date: Sun, 9 Oct 2022 08:47:38 -0700 Subject: [PATCH] add bump lazycore script --- scripts/bump_lazycore.sh | 5 +++++ 1 file changed, 5 insertions(+) create mode 100755 scripts/bump_lazycore.sh diff --git a/scripts/bump_lazycore.sh b/scripts/bump_lazycore.sh new file mode 100755 index 000000000..810e5f08e --- /dev/null +++ b/scripts/bump_lazycore.sh @@ -0,0 +1,5 @@ +# Go's proxy servers are not very up-to-date so that's why we use `GOPROXY=direct` +# We specify the `awesome` branch to avoid the default behaviour of looking for a semver tag. +GOPROXY=direct go get -u github.com/jesseduffield/lazycore@master && go mod vendor && go mod tidy + +# Note to self if you ever want to fork a repo be sure to use this same approach: it's important to use the branch name (e.g. master)