Pier Angelo Vendrame pushed to branch maint-13.5 at The Tor Project / Applications / tor-browser-build
Commits: 2ada0c7b by Morgan at 2024-10-24T18:45:00+00:00 Bug 41269: Fix Windows browser build break due to missing snowflake README.md
- - - - -
2 changed files:
- projects/browser/build - rbm.conf
Changes:
===================================== projects/browser/build ===================================== @@ -108,9 +108,14 @@ mv [% c('input_files_by_name/noscript') %] "$TBDIR/$EXTSPATH/{73a6fe31-595d-460b [% END -%]
# Move READMEs from tor-expert-bundle to the doc dir - mkdir -p "$TBDIR/$DOCSPATH/snowflake" [% IF c("var/macos_universal") %]"$TBDIR_AARCH64/$DOCSPATH/snowflake"[% END %] + # Windows does not have snowflake + [% IF !c("var/windows") -%] + mkdir -p "$TBDIR/$DOCSPATH/snowflake" [% IF c("var/macos_universal") %]"$TBDIR_AARCH64/$DOCSPATH/snowflake"[% END %] + [% END -%] mkdir -p "$TBDIR/$DOCSPATH/conjure" [% IF c("var/macos_universal") %]"$TBDIR_AARCH64/$DOCSPATH/conjure"[% END %] - mv_tbdir tor/pluggable_transports/README.SNOWFLAKE.md "$DOCSPATH/snowflake/README.md" + [% IF !c("var/windows") -%] + mv_tbdir tor/pluggable_transports/README.SNOWFLAKE.md "$DOCSPATH/snowflake/README.md" + [% END -%] mv_tbdir tor/pluggable_transports/README.CONJURE.md "$DOCSPATH/conjure/README.md"
# Move the PTs to where TB expects them
===================================== rbm.conf ===================================== @@ -74,7 +74,7 @@ buildconf:
var: torbrowser_version: '13.5.9' - torbrowser_build: 'build1' + torbrowser_build: 'build2' # This should be the date of when the build is started. For the build # to be reproducible, browser_release_date should always be in the past. browser_release_date: '2024/10/24 16:02:53'
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/2a...
tbb-commits@lists.torproject.org