From: Loup Vaillant Date: Mon, 21 Oct 2019 13:03:52 +0000 (+0200) Subject: Removed tests/vectors.h target from the tarballed makefile X-Git-Url: https://git.codecow.com/?a=commitdiff_plain;h=af5fa5f1ce331d378f21e5b2a773230d78d109ae;p=Monocypher.git Removed tests/vectors.h target from the tarballed makefile The tests/vectors.h file ships with the tarball, we don't need to make it a target. --- diff --git a/release.sh b/release.sh index bcc55f8..8d9bfe7 100755 --- a/release.sh +++ b/release.sh @@ -28,8 +28,9 @@ do sed -i "s/__git__/$VERSION/g" $file done -# Remove the dist target from the makefile (no recursive releases!) -sed '/dist:/,$d' makefile > $FOLDER/makefile +# Remove the dist target from the makefile (no recursive releases!), +# and the tests/vector.h target, which ships with the tarball. +sed '/tests\/vectors.h:/,$d' makefile > $FOLDER/makefile # Remove contributor notes from the README sed '/Contributor notes/,$d' README.md > $FOLDER/README.md