From 89cfc56cd7a844fc51475c5817b3b531ba6130d1 Mon Sep 17 00:00:00 2001 From: Sergey Matveev Date: Wed, 13 Jan 2021 18:15:05 +0300 Subject: [PATCH] Fix tests permissions --- doc/news.texi | 2 ++ makedist.sh | 3 +++ 2 files changed, 5 insertions(+) diff --git a/doc/news.texi b/doc/news.texi index c25d6c0..26c5805 100644 --- a/doc/news.texi +++ b/doc/news.texi @@ -6,6 +6,8 @@ @itemize @item Try to fix failing @code{lukechampine.com/blake3} on arm64 macOS. +@item + Fixed tests permissions in the tarball. @end itemize @anchor{Release 0.12.1} diff --git a/makedist.sh b/makedist.sh index 637b182..7889d49 100755 --- a/makedist.sh +++ b/makedist.sh @@ -84,6 +84,9 @@ cd .. rm -rf *.texi .redo .git .gitignore doc makedist.sh VERSION.do find . -type d -exec chmod 755 {} \; find . -type f -exec chmod 644 {} \; +find t/redo-sh.tests -name test -exec chmod +x {} \+ +find t -name wrapper.rc -exec chmod +x {} \+ +chmod +x t/apenwarr/sleep t/goredo-*.t cd .. tar cvf goredo-"$release".tar --uid=0 --gid=0 --numeric-owner goredo-"$release" -- 2.44.0