Fixed reading RELEASE in make.

development
Shawn Davis 1 year ago
parent c8c998b6ed
commit b2d43c0189
  1. 5
      Makefile

@ -11,8 +11,8 @@ COVERAGE_PATH := docs/build/html/coverage
# $(file) may not work depending upon version of make. # $(file) may not work depending upon version of make.
#RELEASE := $(strip $(file < RELEASE.txt)) #RELEASE := $(strip $(file < RELEASE.txt))
RELEASE := $(strip `cat RELEASE.txt`) RELEASE := $(strip $(shell cat RELEASE.txt))
VERSION := $(strip `cat VERSION.txt`) VERSION := $(strip $(shell cat VERSION.txt))
DOCS_PATH := $(PROJECT_HOME)/docs_diff6_com DOCS_PATH := $(PROJECT_HOME)/docs_diff6_com
DOCS_WWW := $(DOCS_PATH)/www DOCS_WWW := $(DOCS_PATH)/www
@ -74,7 +74,6 @@ publish:
secure: secure:
bandit -r $(PACKAGE_NAME); bandit -r $(PACKAGE_NAME);
#> support - Build support (help) and reference documentation. #> support - Build support (help) and reference documentation.
support: support:
cd docs && make dirhtml; cd docs && make dirhtml;

Loading…
Cancel
Save