From f648a1d9f955aeb51c0c1f50063c7a08796a75b3 Mon Sep 17 00:00:00 2001 From: Felix Fietkau Date: Wed, 22 Oct 2025 11:54:21 +0000 Subject: [PATCH] update_git_source_package.sh: fix umask Avoids generating tarballs with mismatching file modes Signed-off-by: Felix Fietkau --- update_git_source_package.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/update_git_source_package.sh b/update_git_source_package.sh index d5c9bab..9720888 100755 --- a/update_git_source_package.sh +++ b/update_git_source_package.sh @@ -33,6 +33,7 @@ TOPDIR=$3 exit 1 } +umask 022 MAKE=$(which gmake) || MAKE=$(which make) FIND=$(which gfind) || FIND=$(which find) -- 2.30.2