Add instruction to cd to correct directory before tag-branch

This commit is contained in:
Jon Leech 2025-09-25 23:10:10 +01:00
parent 9a0f3099c8
commit 8ed12a9178

View file

@ -126,7 +126,7 @@ push-branch: revision-check
echo "Now create a pull request by going to the URL:" echo "Now create a pull request by going to the URL:"
echo " https://github.com/KhronosGroup/Vulkan-Headers/pull/new/$(BRANCH)" echo " https://github.com/KhronosGroup/Vulkan-Headers/pull/new/$(BRANCH)"
echo "After accepting this PR, continue with:" echo "After accepting this PR, continue with:"
echo " make -f Makefile.release REVISION=$(REVISION) tag-branch" echo " cd $(shell pwd) && make -f Makefile.release REVISION=$(REVISION) tag-branch"
# Tag main for the update after accepting the update PR # Tag main for the update after accepting the update PR
TAG = v1.4.$(REVISION) TAG = v1.4.$(REVISION)