Skip to content

Commit 73c0269

Browse files
committed
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 <[email protected]>
1 parent 1da8e49 commit 73c0269

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/build-release.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ if [ x"$1" = x"--inside-docker" ]; then
99
./configure
1010
make -j3
1111
make install DESTDIR=/"$VER"
12-
tar cvfz /release/clightning-"$VER".tar.gz -- *
12+
cd /"$VER" && tar cvfz /release/clightning-"$VER".tar.gz -- *
1313
exit 0
1414
fi
1515

0 commit comments

Comments
 (0)