From 0fc85acdf2220ce21b375f97a39b4bce02d5a759 Mon Sep 17 00:00:00 2001 From: Feng Xiao Date: Thu, 14 Dec 2017 17:54:18 -0800 Subject: Fix file permission for python package. `umask 0022` makes sure the created package will be accessible by all users. --- python/release.sh | 1 + 1 file changed, 1 insertion(+) (limited to 'python') diff --git a/python/release.sh b/python/release.sh index b0bf3b3f..01fc5e23 100755 --- a/python/release.sh +++ b/python/release.sh @@ -47,6 +47,7 @@ DEV=$2 # Make sure all files are world-readable. find python -type d -exec chmod a+r,a+x {} + find python -type f -exec chmod a+r {} + +umask 0022 # Check that the supplied version number matches what's inside the source code. SOURCE_VERSION=`get_source_version` -- cgit v1.2.3