From 556f2cd1270cd254a12008e6570193597d56b232 Mon Sep 17 00:00:00 2001 From: Silvestre Zabala Date: Fri, 10 Nov 2023 11:29:19 +0100 Subject: [PATCH] Fix `*-release` make targets (#2345) --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 6ab6f294e5..a969fba402 100644 --- a/Makefile +++ b/Makefile @@ -254,14 +254,14 @@ spec-test: bundle exec rspec .PHONY: release -bosh-release: go-mod-tidy vendor scheduler db build/autoscaler-test.tgz +bosh-release: go-mod-tidy go-mod-vendor scheduler db build/autoscaler-test.tgz build/autoscaler-test.tgz: @echo " - building bosh release into build/autoscaler-test.tgz" @mkdir -p build @bosh create-release --force --timestamp-version --tarball=build/autoscaler-test.tgz .PHONY: acceptance-release -acceptance-release: clean-acceptance go-mod-tidy vendor build-test-app +acceptance-release: clean-acceptance go-mod-tidy go-mod-vendor build-test-app @echo " - building acceptance test release '${VERSION}' to dir: '${DEST}' " @mkdir -p ${DEST} @tar --create --auto-compress --directory="src" --file="${ACCEPTANCE_TESTS_FILE}" 'acceptance'