From 81d5c2a6464771c9a180d0214706a2f65f0b1d18 Mon Sep 17 00:00:00 2001 From: josselin Date: Mon, 25 Jan 2016 22:08:02 +0100 Subject: Added php-opencloud/openstack as SubModule --- server/vendor/guzzlehttp/psr7/Makefile | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) (limited to 'server/vendor/guzzlehttp/psr7/Makefile') diff --git a/server/vendor/guzzlehttp/psr7/Makefile b/server/vendor/guzzlehttp/psr7/Makefile index 9c21096..8b00b43 100644 --- a/server/vendor/guzzlehttp/psr7/Makefile +++ b/server/vendor/guzzlehttp/psr7/Makefile @@ -9,5 +9,21 @@ coverage: view-coverage: open artifacts/coverage/index.html +check-tag: + $(if $(TAG),,$(error TAG is not defined. Pass via "make tag TAG=4.2.1")) + +tag: check-tag + @echo Tagging $(TAG) + chag update $(TAG) + git commit -a -m '$(TAG) release' + chag tag + @echo "Release has been created. Push using 'make release'" + @echo "Changes made in the release commit" + git diff HEAD~1 HEAD + +release: check-tag + git push origin master + git push origin $(TAG) + clean: rm -rf artifacts/* -- cgit v1.2.3