Browse Source

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>
paymod-02
Rusty Russell 4 years ago
committed by Christian Decker
parent
commit
74abd30da5
  1. 2
      contrib/pyln-proto/Makefile
  2. 2
      contrib/pyln-spec/Makefile

2
contrib/pyln-proto/Makefile

@ -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:

2
contrib/pyln-spec/Makefile

@ -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)

Loading…
Cancel
Save