Skip to content

Commit

Permalink
Fix *-release make targets (#2345)
Browse files Browse the repository at this point in the history
  • Loading branch information
silvestre authored Nov 10, 2023
1 parent 5b8480a commit 556f2cd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down

0 comments on commit 556f2cd

Please sign in to comment.