Replace version tag in composer.json

This commit is contained in:
Jeroen De Meerleer 2019-09-28 00:29:12 +02:00
parent 9ea711ad66
commit b363af0c9e
Signed by: JeroenED
GPG Key ID: 28CCCB8F62BFADD6
2 changed files with 3 additions and 2 deletions

View File

@ -1,7 +1,7 @@
.PHONY: help tests dist
.DEFAULT_GOAL := help
BRANCH := $(shell git rev-parse --abbrev-ref HEAD)
VERSION := $(if $(TAG),$(TAG),$(BRANCH))
VERSION := $(if $(TAG),$(TAG),dev-$(BRANCH))
help:
@grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-12s\033[0m %s\n", $$1, $$2}'
@ -21,6 +21,7 @@ api: ## Generates api-docs
dist: ## Generates distribution
cp dist/composer* res/
mv dist/composer-dist.json dist/composer.json
sed -i -e "s%//VERSION//%$(VERSION)%g" dist/composer.json
cd dist && composer install
rm dist/composer.json
rm dist/composer.lock

View File

@ -6,7 +6,7 @@
}
],
"require": {
"jeroened/libpairtwo": "*"
"jeroened/libpairtwo": "//VERSION//"
},
"minimum-stability": "dev"
}