From 74abd30da50b848b572b3d8dfd6764695307cce9 Mon Sep 17 00:00:00 2001 From: Rusty Russell Date: Fri, 26 Jun 2020 11:24:43 +0930 Subject: [PATCH] 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 --- contrib/pyln-proto/Makefile | 2 +- contrib/pyln-spec/Makefile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/contrib/pyln-proto/Makefile b/contrib/pyln-proto/Makefile index 65cdf74e6..edc6a565c 100644 --- a/contrib/pyln-proto/Makefile +++ b/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: diff --git a/contrib/pyln-spec/Makefile b/contrib/pyln-spec/Makefile index 95b00fc22..053b52f49 100755 --- a/contrib/pyln-spec/Makefile +++ b/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)