boklm pushed to branch main at The Tor Project / Applications / tor-browser-build
Commits: e94ca9ad by Nicolas Vigier at 2024-06-19T09:59:34+02:00 Bug 41173: Fix permission issue on files in the debian directory
- - - - -
1 changed file:
- projects/linux-packages/build
Changes:
===================================== projects/linux-packages/build ===================================== @@ -34,6 +34,10 @@ umask 0022 chmod +x debian/docs debian/rules mkdir debian/source echo -n '3.0 (quilt)' > debian/source/format + # Fix permissions to avoid mismatching debian.tar.xz file depending + # on umask outside the container (tor-browser-build#41173) + find debian -executable -exec chmod 700 {} ; + find debian ! -executable -exec chmod 600 {} ;
function extract_src_tar {
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/e9...
tor-commits@lists.torproject.org