Skip to content

Commit

Permalink
tools/built-release.sh: fix archives we produce.
Browse files Browse the repository at this point in the history
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]>
  • Loading branch information
rustyrussell committed Mar 1, 2019
1 parent 1da8e49 commit 73c0269
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/build-release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 73c0269

Please sign in to comment.