pyln-proto, pyln-spec: fix 'make prod-release' target.

rusty$ make prod-release
  make: *** No rule to make target 'test', needed by 'prod-release'.  Stop.

Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
This commit is contained in:
Rusty Russell 2020-06-26 11:24:43 +09:30 committed by Christian Decker
parent 2e9c387f45
commit 74abd30da5
2 changed files with 2 additions and 2 deletions

View file

@ -39,7 +39,7 @@ test-release: check $(ARTEFACTS)
testpypi/bin/pytest tests
rm -rf testpypi
prod-release: test $(ARTEFACTS)
prod-release: test-release $(ARTEFACTS)
python3 -m twine upload $(ARTEFACTS)
clean:

View file

@ -66,7 +66,7 @@ test-release-bolt%: $(ARTEFACTS)
test-release: check $(foreach b,$(BOLTS),test-release-bolt$b)
prod-release: test $(ARTEFACTS)
prod-release: test-release $(ARTEFACTS)
python3 -m twine upload $(ARTEFACTS)
refresh: $(CODE_DIRS:%=%/gen_csv_version.py) $(CODE_DIRS:%=%/gen_version.py)