aboutsummaryrefslogtreecommitdiff
path: root/python
diff options
context:
space:
mode:
authorFeng Xiao <xfxyjwf@gmail.com>2017-12-15 12:09:19 -0800
committerGitHub <noreply@github.com>2017-12-15 12:09:19 -0800
commit77d32bc56ce8f0cb37577eabcfd426b99fa3c091 (patch)
tree62ccda2fe7f8e93cf6d96660193306f5bcfabe2b /python
parent396336eb961b75f03b25824fe86cf6490fb75e3a (diff)
parent0fc85acdf2220ce21b375f97a39b4bce02d5a759 (diff)
downloadprotobuf-77d32bc56ce8f0cb37577eabcfd426b99fa3c091.tar.gz
protobuf-77d32bc56ce8f0cb37577eabcfd426b99fa3c091.tar.bz2
protobuf-77d32bc56ce8f0cb37577eabcfd426b99fa3c091.zip
Merge pull request #4053 from xfxyjwf/fixumask
Fix file permission for python package.
Diffstat (limited to 'python')
-rwxr-xr-xpython/release.sh1
1 files changed, 1 insertions, 0 deletions
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`