From d551b125cc5e0ddfc27f244ba9ae55b30d498de6 Mon Sep 17 00:00:00 2001 From: Rusty Russell Date: Wed, 24 Jul 2019 14:11:29 +0930 Subject: [PATCH] Makefile: make extract-experimental-bolt-csv check out the BOLTVERSION. Signed-off-by: Rusty Russell --- wire/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wire/Makefile b/wire/Makefile index db961eac6..829571497 100644 --- a/wire/Makefile +++ b/wire/Makefile @@ -39,7 +39,7 @@ extract-bolt-csv: bolt-precheck @$(BOLT_EXTRACT) $(LOCAL_BOLTDIR)/04*.md >> wire/extracted_onion_wire_csv # Explicit command to add diff of BOLT CSV's to an experimental_csv file -extract-experimental-bolt-csv: +extract-experimental-bolt-csv: bolt-precheck @$(BOLT_EXTRACT) $(LOCAL_BOLTDIR)/0[127]*.md | diff -u wire/extracted_peer_wire_csv - >>wire/extracted_peer_experimental_csv | if [ $$? -lt 0 ];then exit 1;fi @{ echo '#include '; $(BOLT_EXTRACT) $(LOCAL_BOLTDIR)/04*.md; } | diff -u wire/extracted_onion_wire_csv - >>wire/extracted_onion_experimental_csv | if [ $$? -lt 0 ];then exit 1;fi