Pier Angelo Vendrame pushed to branch main at The Tor Project / Applications / tor-browser-build Commits: 0906f5cf by Pier Angelo Vendrame at 2026-04-07T08:53:38+02:00 Bug 41773: Change position of -mindepth in ddmg.sh. -mindepth is a global option, therefore it should go before -type. - - - - - 2 changed files: - projects/browser/ddmg.sh - tools/signing/ddmg.sh Changes: ===================================== projects/browser/ddmg.sh ===================================== @@ -24,7 +24,7 @@ newfs_hfs -v "[% c('var/display_name') %]" "$hfsfile" pushd [% src %] -find -type d -mindepth 1 | sed -e 's/^\.\///' | sort | while read dirname; do +find -mindepth 1 -type d | sed -e 's/^\.\///' | sort | while read dirname; do hfsplus "$hfsfile" mkdir "/$dirname" hfsplus "$hfsfile" chmod 0755 "/$dirname" done ===================================== tools/signing/ddmg.sh ===================================== @@ -45,7 +45,7 @@ cd $src_dir # add it back again with the special command to do so. rm -f Applications -find -type d -mindepth 1 | sed -e 's/^\.\///' | sort | while read dirname; do +find -mindepth 1 -type d | sed -e 's/^\.\///' | sort | while read dirname; do hfsplus "$hfsfile" mkdir "/$dirname" hfsplus "$hfsfile" chmod 0755 "/$dirname" done View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/09... -- View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/09... You're receiving this email because of your account on gitlab.torproject.org. Manage all notifications: https://gitlab.torproject.org/-/profile/notifications | Help: https://gitlab.torproject.org/help
participants (1)
-
Pier Angelo Vendrame (@pierov)