tools/built-release.sh: fix archives we produce.

We were tarring up the build dir, not the destination dir!  We did this
for 0.6.3 and nobody noticed :(

Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
This commit is contained in:
Rusty Russell 2019-03-01 20:57:47 +10:30
parent 1da8e498c0
commit 73c02691a3

View File

@ -9,7 +9,7 @@ if [ x"$1" = x"--inside-docker" ]; then
./configure
make -j3
make install DESTDIR=/"$VER"
tar cvfz /release/clightning-"$VER".tar.gz -- *
cd /"$VER" && tar cvfz /release/clightning-"$VER".tar.gz -- *
exit 0
fi