From 73c02691a39808316cabec2995ab904107380fa9 Mon Sep 17 00:00:00 2001 From: Rusty Russell Date: Fri, 1 Mar 2019 20:57:47 +1030 Subject: [PATCH] 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 --- tools/build-release.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/build-release.sh b/tools/build-release.sh index 1a21ca925..23d902b53 100755 --- a/tools/build-release.sh +++ b/tools/build-release.sh @@ -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