diff --git a/Makefile b/Makefile index 10bea092a..3e56a2821 100644 --- a/Makefile +++ b/Makefile @@ -70,4 +70,4 @@ record-demo: .PHONY: vendor vendor: - go mod vendor && go mod tidy + go mod tidy && go mod vendor diff --git a/justfile b/justfile index f9351732a..64d9d1ee2 100644 --- a/justfile +++ b/justfile @@ -75,4 +75,4 @@ demo *args: demo/record_demo.sh {{ args }} vendor: - go mod vendor && go mod tidy + go mod tidy && go mod vendor diff --git a/scripts/bump_lazycore.sh b/scripts/bump_lazycore.sh index 810e5f08e..a5cfe05ff 100755 --- a/scripts/bump_lazycore.sh +++ b/scripts/bump_lazycore.sh @@ -1,5 +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 +GOPROXY=direct go get -u github.com/jesseduffield/lazycore@master && go mod tidy && go mod vendor # 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)