Skip to content

Commit b1c29ca

Browse files
committed
tools: insist on lowdown for zipfile.
On GitHub where we build the zipfile, it exists, so we don't check out the submodule. If you do, your zipfile won't match! Signed-off-by: Rusty Russell <[email protected]>
1 parent 6a05f24 commit b1c29ca

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

tools/build-release.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -127,6 +127,8 @@ if [ "$WITHOUT_ZIP" = "false" ]; then
127127
# submodcheck needs to know if we have lowdown
128128
touch config.vars
129129
./configure --reconfigure
130+
# If you don't have lowdown, your zip file will include it: we assume everyone has it now!
131+
grep -q "HAVE_LOWDOWN=1" config.vars || (echo "Please install lowdown" >&2; exit 1)
130132
# If it's a completely clean directory, we need submodules!
131133
make submodcheck
132134

0 commit comments

Comments
 (0)