From: Willy Tarreau Date: Wed, 24 May 2023 20:48:14 +0000 (+0200) Subject: SCRIPTS: publish-release: update the umask to keep group write access X-Git-Tag: v2.8-dev13~1 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=f9b04bd48bb3caa85b975262ce9248d783a33b44;p=thirdparty%2Fhaproxy.git SCRIPTS: publish-release: update the umask to keep group write access This is to avoid the occasional error that arises when a release is first done by another maintainer. --- diff --git a/scripts/publish-release b/scripts/publish-release index 3cf32d80c5..9066d4add7 100755 --- a/scripts/publish-release +++ b/scripts/publish-release @@ -22,6 +22,9 @@ NEW= DIR= DOC=( ) +# need to have group write on emitted files for others to update +umask 002 + die() { [ "$#" -eq 0 ] || echo "$*" >&2 exit 1