Skip to content

Commit f2488fb

Browse files
jb55rustyrussell
authored andcommitted
make: fix broken error message in bolt-check
It looks like a printf was missing for the bolt-check error message Signed-off-by: William Casarin <jb55@jb55.com>
1 parent 7c4b9c8 commit f2488fb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -243,7 +243,7 @@ check-makefile:
243243

244244
# Any mention of BOLT# must be followed by an exact quote, modulo whitespace.
245245
bolt-check/%: % bolt-precheck tools/check-bolt
246-
@if [ -d .tmp.lightningrfc ]; then tools/check-bolt .tmp.lightningrfc $<; else Not checking BOLTs: BOLTDIR $(BOLTDIR) does not exist >&2; fi
246+
@if [ -d .tmp.lightningrfc ]; then tools/check-bolt .tmp.lightningrfc $<; else echo "Not checking BOLTs: BOLTDIR $(BOLTDIR) does not exist" >&2; fi
247247

248248
LOCAL_BOLTDIR=.tmp.lightningrfc
249249

0 commit comments

Comments
 (0)