From: Hans Wennborg Date: Mon, 2 Mar 2015 17:30:42 +0000 (+0000) Subject: export.sh: Make sure umask is not too restrictive (PR22742) X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=f0c07c3691237ec68c44946a014b0ad79a7b9faf;p=oota-llvm.git export.sh: Make sure umask is not too restrictive (PR22742) git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@230977 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/utils/release/export.sh b/utils/release/export.sh index 38e5a819c01..4da5fe40950 100755 --- a/utils/release/export.sh +++ b/utils/release/export.sh @@ -79,5 +79,8 @@ if [ "x$release" = "x" ]; then exit 1 fi +# Make sure umask is not overly restrictive. +umask 0022 + export_sources exit 0